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.
- {amfs_http_server-0.1.2 → amfs_http_server-0.1.3}/PKG-INFO +1 -1
- {amfs_http_server-0.1.2 → amfs_http_server-0.1.3}/pyproject.toml +1 -1
- {amfs_http_server-0.1.2 → amfs_http_server-0.1.3}/src/amfs_http/server.py +4 -1
- {amfs_http_server-0.1.2 → amfs_http_server-0.1.3}/.gitignore +0 -0
- {amfs_http_server-0.1.2 → amfs_http_server-0.1.3}/src/amfs_http/__init__.py +0 -0
- {amfs_http_server-0.1.2 → amfs_http_server-0.1.3}/src/amfs_http/auth.py +0 -0
- {amfs_http_server-0.1.2 → amfs_http_server-0.1.3}/src/amfs_http/models.py +0 -0
- {amfs_http_server-0.1.2 → amfs_http_server-0.1.3}/src/amfs_http/pro_proxy.py +0 -0
- {amfs_http_server-0.1.2 → amfs_http_server-0.1.3}/src/amfs_http/sse.py +0 -0
- {amfs_http_server-0.1.2 → amfs_http_server-0.1.3}/src/amfs_http/tenant_middleware.py +0 -0
|
@@ -1953,7 +1953,10 @@ async def graph_backfill(
|
|
|
1953
1953
|
|
|
1954
1954
|
mem = _get_memory()
|
|
1955
1955
|
entries = mem.list()
|
|
1956
|
-
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|