forgexa-cli 1.43.4__tar.gz → 1.43.6__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.
- {forgexa_cli-1.43.4 → forgexa_cli-1.43.6}/PKG-INFO +1 -1
- {forgexa_cli-1.43.4 → forgexa_cli-1.43.6}/forgexa_cli/__init__.py +1 -1
- {forgexa_cli-1.43.4 → forgexa_cli-1.43.6}/forgexa_cli/agent_core.py +2 -0
- {forgexa_cli-1.43.4 → forgexa_cli-1.43.6}/forgexa_cli/daemon.py +438 -90
- {forgexa_cli-1.43.4 → forgexa_cli-1.43.6}/forgexa_cli/main.py +121 -42
- {forgexa_cli-1.43.4 → forgexa_cli-1.43.6}/forgexa_cli.egg-info/PKG-INFO +1 -1
- {forgexa_cli-1.43.4 → forgexa_cli-1.43.6}/pyproject.toml +1 -1
- {forgexa_cli-1.43.4 → forgexa_cli-1.43.6}/tests/test_auth_and_runtime_commands.py +27 -0
- {forgexa_cli-1.43.4 → forgexa_cli-1.43.6}/tests/test_runtime_credentials.py +275 -3
- {forgexa_cli-1.43.4 → forgexa_cli-1.43.6}/tests/test_session_credentials.py +76 -3
- {forgexa_cli-1.43.4 → forgexa_cli-1.43.6}/README.md +0 -0
- {forgexa_cli-1.43.4 → forgexa_cli-1.43.6}/forgexa_cli/_build_config.py +0 -0
- {forgexa_cli-1.43.4 → forgexa_cli-1.43.6}/forgexa_cli/_local_bind.py +0 -0
- {forgexa_cli-1.43.4 → forgexa_cli-1.43.6}/forgexa_cli/autoupgrade.py +0 -0
- {forgexa_cli-1.43.4 → forgexa_cli-1.43.6}/forgexa_cli/py.typed +0 -0
- {forgexa_cli-1.43.4 → forgexa_cli-1.43.6}/forgexa_cli.egg-info/SOURCES.txt +0 -0
- {forgexa_cli-1.43.4 → forgexa_cli-1.43.6}/forgexa_cli.egg-info/dependency_links.txt +0 -0
- {forgexa_cli-1.43.4 → forgexa_cli-1.43.6}/forgexa_cli.egg-info/entry_points.txt +0 -0
- {forgexa_cli-1.43.4 → forgexa_cli-1.43.6}/forgexa_cli.egg-info/requires.txt +0 -0
- {forgexa_cli-1.43.4 → forgexa_cli-1.43.6}/forgexa_cli.egg-info/top_level.txt +0 -0
- {forgexa_cli-1.43.4 → forgexa_cli-1.43.6}/setup.cfg +0 -0
- {forgexa_cli-1.43.4 → forgexa_cli-1.43.6}/tests/test_autoupgrade.py +0 -0
- {forgexa_cli-1.43.4 → forgexa_cli-1.43.6}/tests/test_check_command.py +0 -0
- {forgexa_cli-1.43.4 → forgexa_cli-1.43.6}/tests/test_expiry_warnings_and_revoke.py +0 -0
- {forgexa_cli-1.43.4 → forgexa_cli-1.43.6}/tests/test_local_bind_commands.py +0 -0
- {forgexa_cli-1.43.4 → forgexa_cli-1.43.6}/tests/test_silent_install.py +0 -0
- {forgexa_cli-1.43.4 → forgexa_cli-1.43.6}/tests/test_upgrade_observability.py +0 -0
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
"""forgexa-cli — Forgexa command-line client."""
|
|
2
|
-
__version__ = "1.43.
|
|
2
|
+
__version__ = "1.43.6"
|
|
@@ -630,6 +630,7 @@ class AgentDiscovery:
|
|
|
630
630
|
"true",
|
|
631
631
|
stdout=asyncio.subprocess.DEVNULL,
|
|
632
632
|
stderr=asyncio.subprocess.PIPE,
|
|
633
|
+
**_agent_process_group_kwargs(),
|
|
633
634
|
)
|
|
634
635
|
_, stderr = await asyncio.wait_for(proc.communicate(), timeout=5)
|
|
635
636
|
if proc.returncode != 0:
|
|
@@ -745,6 +746,7 @@ def _kill_proc(proc: asyncio.subprocess.Process) -> None:
|
|
|
745
746
|
_subprocess.run(
|
|
746
747
|
["taskkill", "/F", "/T", "/PID", str(proc.pid)],
|
|
747
748
|
capture_output=True,
|
|
749
|
+
**_agent_process_group_kwargs(),
|
|
748
750
|
)
|
|
749
751
|
except Exception:
|
|
750
752
|
pass
|