amfs-http-server 0.1.2__tar.gz → 0.1.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: amfs-http-server
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: AMFS HTTP/REST API server with SSE support
5
5
  License-Expression: Apache-2.0
6
6
  Requires-Python: >=3.11
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "amfs-http-server"
3
- version = "0.1.2"
3
+ version = "0.1.3"
4
4
  description = "AMFS HTTP/REST API server with SSE support"
5
5
  requires-python = ">=3.11"
6
6
  license = "Apache-2.0"
@@ -1953,7 +1953,10 @@ async def graph_backfill(
1953
1953
 
1954
1954
  mem = _get_memory()
1955
1955
  entries = mem.list()
1956
- outcomes = mem._adapter.list_outcomes(namespace=mem.namespace) if hasattr(mem._adapter, "list_outcomes") else []
1956
+ try:
1957
+ outcomes = mem._adapter.list_outcomes() if hasattr(mem._adapter, "list_outcomes") else []
1958
+ except Exception:
1959
+ outcomes = []
1957
1960
 
1958
1961
  created = 0
1959
1962
  errors = 0