podstack 1.3.20__tar.gz → 1.3.21__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.
- {podstack-1.3.20 → podstack-1.3.21}/PKG-INFO +1 -1
- {podstack-1.3.20 → podstack-1.3.21}/podstack/gpu_runner.py +5 -0
- {podstack-1.3.20 → podstack-1.3.21}/podstack.egg-info/PKG-INFO +1 -1
- {podstack-1.3.20 → podstack-1.3.21}/pyproject.toml +1 -1
- {podstack-1.3.20 → podstack-1.3.21}/LICENSE +0 -0
- {podstack-1.3.20 → podstack-1.3.21}/README.md +0 -0
- {podstack-1.3.20 → podstack-1.3.21}/podstack/__init__.py +0 -0
- {podstack-1.3.20 → podstack-1.3.21}/podstack/annotations.py +0 -0
- {podstack-1.3.20 → podstack-1.3.21}/podstack/client.py +0 -0
- {podstack-1.3.20 → podstack-1.3.21}/podstack/exceptions.py +0 -0
- {podstack-1.3.20 → podstack-1.3.21}/podstack/execution.py +0 -0
- {podstack-1.3.20 → podstack-1.3.21}/podstack/models.py +0 -0
- {podstack-1.3.20 → podstack-1.3.21}/podstack/notebook.py +0 -0
- {podstack-1.3.20 → podstack-1.3.21}/podstack/registry/__init__.py +0 -0
- {podstack-1.3.20 → podstack-1.3.21}/podstack/registry/autolog.py +0 -0
- {podstack-1.3.20 → podstack-1.3.21}/podstack/registry/client.py +0 -0
- {podstack-1.3.20 → podstack-1.3.21}/podstack/registry/exceptions.py +0 -0
- {podstack-1.3.20 → podstack-1.3.21}/podstack/registry/experiment.py +0 -0
- {podstack-1.3.20 → podstack-1.3.21}/podstack/registry/model.py +0 -0
- {podstack-1.3.20 → podstack-1.3.21}/podstack/registry/model_utils.py +0 -0
- {podstack-1.3.20 → podstack-1.3.21}/podstack.egg-info/SOURCES.txt +0 -0
- {podstack-1.3.20 → podstack-1.3.21}/podstack.egg-info/dependency_links.txt +0 -0
- {podstack-1.3.20 → podstack-1.3.21}/podstack.egg-info/requires.txt +0 -0
- {podstack-1.3.20 → podstack-1.3.21}/podstack.egg-info/top_level.txt +0 -0
- {podstack-1.3.20 → podstack-1.3.21}/podstack_gpu/__init__.py +0 -0
- {podstack-1.3.20 → podstack-1.3.21}/podstack_gpu/app.py +0 -0
- {podstack-1.3.20 → podstack-1.3.21}/podstack_gpu/exceptions.py +0 -0
- {podstack-1.3.20 → podstack-1.3.21}/podstack_gpu/image.py +0 -0
- {podstack-1.3.20 → podstack-1.3.21}/podstack_gpu/runner.py +0 -0
- {podstack-1.3.20 → podstack-1.3.21}/podstack_gpu/secret.py +0 -0
- {podstack-1.3.20 → podstack-1.3.21}/podstack_gpu/utils.py +0 -0
- {podstack-1.3.20 → podstack-1.3.21}/podstack_gpu/volume.py +0 -0
- {podstack-1.3.20 → podstack-1.3.21}/setup.cfg +0 -0
|
@@ -901,6 +901,11 @@ _stream_install(
|
|
|
901
901
|
if event.get("type") in ("stdout", "stderr", "output"):
|
|
902
902
|
content = event.get("content", "")
|
|
903
903
|
if content:
|
|
904
|
+
# Logs arriving means the pod is running — advance phase
|
|
905
|
+
# if we missed the "running" status event (connected late)
|
|
906
|
+
if final_status not in ("running", "completed", "failed", "timeout", "cancelled"):
|
|
907
|
+
final_status = "running"
|
|
908
|
+
display.set_phase("running")
|
|
904
909
|
output_buffer.append(content)
|
|
905
910
|
display.log(content, event.get("type", "stdout"))
|
|
906
911
|
|
|
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
|
|
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
|