processcube-etw-library 2026.1.21.174504b0__tar.gz → 2026.1.22.73503b0__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.
- {processcube_etw_library-2026.1.21.174504b0/src/processcube_etw_library.egg-info → processcube_etw_library-2026.1.22.73503b0}/PKG-INFO +1 -1
- {processcube_etw_library-2026.1.21.174504b0 → processcube_etw_library-2026.1.22.73503b0}/src/processcube_etw_library/__init__.py +7 -0
- {processcube_etw_library-2026.1.21.174504b0 → processcube_etw_library-2026.1.22.73503b0}/src/processcube_etw_library/create_external_task_client.py +3 -3
- {processcube_etw_library-2026.1.21.174504b0 → processcube_etw_library-2026.1.22.73503b0/src/processcube_etw_library.egg-info}/PKG-INFO +1 -1
- {processcube_etw_library-2026.1.21.174504b0 → processcube_etw_library-2026.1.22.73503b0}/.github/workflows/build_and_publish.yml +0 -0
- {processcube_etw_library-2026.1.21.174504b0 → processcube_etw_library-2026.1.22.73503b0}/.gitignore +0 -0
- {processcube_etw_library-2026.1.21.174504b0 → processcube_etw_library-2026.1.22.73503b0}/.python-version +0 -0
- {processcube_etw_library-2026.1.21.174504b0 → processcube_etw_library-2026.1.22.73503b0}/README.md +0 -0
- {processcube_etw_library-2026.1.21.174504b0 → processcube_etw_library-2026.1.22.73503b0}/pyproject.toml +0 -0
- {processcube_etw_library-2026.1.21.174504b0 → processcube_etw_library-2026.1.22.73503b0}/setup.cfg +0 -0
- {processcube_etw_library-2026.1.21.174504b0 → processcube_etw_library-2026.1.22.73503b0}/src/processcube_etw_library/etw_app.py +0 -0
- {processcube_etw_library-2026.1.21.174504b0 → processcube_etw_library-2026.1.22.73503b0}/src/processcube_etw_library/health/__init__.py +0 -0
- {processcube_etw_library-2026.1.21.174504b0 → processcube_etw_library-2026.1.22.73503b0}/src/processcube_etw_library/health/built_in.py +0 -0
- {processcube_etw_library-2026.1.21.174504b0 → processcube_etw_library-2026.1.22.73503b0}/src/processcube_etw_library/health/check.py +0 -0
- {processcube_etw_library-2026.1.21.174504b0 → processcube_etw_library-2026.1.22.73503b0}/src/processcube_etw_library/health/handlers.py +0 -0
- {processcube_etw_library-2026.1.21.174504b0 → processcube_etw_library-2026.1.22.73503b0}/src/processcube_etw_library/health/models.py +0 -0
- {processcube_etw_library-2026.1.21.174504b0 → processcube_etw_library-2026.1.22.73503b0}/src/processcube_etw_library/health/registry.py +0 -0
- {processcube_etw_library-2026.1.21.174504b0 → processcube_etw_library-2026.1.22.73503b0}/src/processcube_etw_library/health/routes.py +0 -0
- {processcube_etw_library-2026.1.21.174504b0 → processcube_etw_library-2026.1.22.73503b0}/src/processcube_etw_library/identity_provider.py +0 -0
- {processcube_etw_library-2026.1.21.174504b0 → processcube_etw_library-2026.1.22.73503b0}/src/processcube_etw_library/server_config.py +0 -0
- {processcube_etw_library-2026.1.21.174504b0 → processcube_etw_library-2026.1.22.73503b0}/src/processcube_etw_library/settings.py +0 -0
- {processcube_etw_library-2026.1.21.174504b0 → processcube_etw_library-2026.1.22.73503b0}/src/processcube_etw_library/typed_handler.py +0 -0
- {processcube_etw_library-2026.1.21.174504b0 → processcube_etw_library-2026.1.22.73503b0}/src/processcube_etw_library.egg-info/SOURCES.txt +0 -0
- {processcube_etw_library-2026.1.21.174504b0 → processcube_etw_library-2026.1.22.73503b0}/src/processcube_etw_library.egg-info/dependency_links.txt +0 -0
- {processcube_etw_library-2026.1.21.174504b0 → processcube_etw_library-2026.1.22.73503b0}/src/processcube_etw_library.egg-info/requires.txt +0 -0
- {processcube_etw_library-2026.1.21.174504b0 → processcube_etw_library-2026.1.22.73503b0}/src/processcube_etw_library.egg-info/top_level.txt +0 -0
- {processcube_etw_library-2026.1.21.174504b0 → processcube_etw_library-2026.1.22.73503b0}/uv.lock +0 -0
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
# Prevent nest_asyncio from patching asyncio.run() in processcube_client - it breaks uvicorn's loop_factory
|
|
2
|
+
import nest_asyncio
|
|
3
|
+
nest_asyncio.apply = lambda *args, **kwargs: None
|
|
4
|
+
|
|
1
5
|
from .health import (
|
|
2
6
|
create_url_health_check,
|
|
3
7
|
HealthCheck,
|
|
@@ -7,6 +11,7 @@ from .health import (
|
|
|
7
11
|
LivezResponse,
|
|
8
12
|
)
|
|
9
13
|
from .etw_app import new_external_task_worker_app
|
|
14
|
+
from .settings import get_settings, init_settings
|
|
10
15
|
|
|
11
16
|
__all__ = [
|
|
12
17
|
"create_url_health_check",
|
|
@@ -16,4 +21,6 @@ __all__ = [
|
|
|
16
21
|
"HealthConditionInfo",
|
|
17
22
|
"LivezResponse",
|
|
18
23
|
"new_external_task_worker_app",
|
|
24
|
+
"get_settings",
|
|
25
|
+
"init_settings",
|
|
19
26
|
]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# Prevent nest_asyncio from patching asyncio.run() in processcube_client - it breaks uvicorn's loop_factory
|
|
2
|
-
import nest_asyncio
|
|
3
|
-
nest_asyncio.apply = lambda *args, **kwargs: None
|
|
1
|
+
# # Prevent nest_asyncio from patching asyncio.run() in processcube_client - it breaks uvicorn's loop_factory
|
|
2
|
+
# import nest_asyncio
|
|
3
|
+
# nest_asyncio.apply = lambda *args, **kwargs: None
|
|
4
4
|
|
|
5
5
|
from processcube_client.external_task import ExternalTaskClient
|
|
6
6
|
|
|
File without changes
|
{processcube_etw_library-2026.1.21.174504b0 → processcube_etw_library-2026.1.22.73503b0}/.gitignore
RENAMED
|
File without changes
|
|
File without changes
|
{processcube_etw_library-2026.1.21.174504b0 → processcube_etw_library-2026.1.22.73503b0}/README.md
RENAMED
|
File without changes
|
|
File without changes
|
{processcube_etw_library-2026.1.21.174504b0 → processcube_etw_library-2026.1.22.73503b0}/setup.cfg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{processcube_etw_library-2026.1.21.174504b0 → processcube_etw_library-2026.1.22.73503b0}/uv.lock
RENAMED
|
File without changes
|