superset-showtime 0.3.2__tar.gz → 0.3.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.
Potentially problematic release.
This version of superset-showtime might be problematic. Click here for more details.
- {superset_showtime-0.3.2 → superset_showtime-0.3.3}/PKG-INFO +1 -1
- {superset_showtime-0.3.2 → superset_showtime-0.3.3}/showtime/__init__.py +1 -1
- {superset_showtime-0.3.2 → superset_showtime-0.3.3}/showtime/cli.py +18 -8
- {superset_showtime-0.3.2 → superset_showtime-0.3.3}/workflows-reference/showtime-trigger.yml +1 -0
- {superset_showtime-0.3.2 → superset_showtime-0.3.3}/.claude/settings.local.json +0 -0
- {superset_showtime-0.3.2 → superset_showtime-0.3.3}/.gitignore +0 -0
- {superset_showtime-0.3.2 → superset_showtime-0.3.3}/.pre-commit-config.yaml +0 -0
- {superset_showtime-0.3.2 → superset_showtime-0.3.3}/CLAUDE.md +0 -0
- {superset_showtime-0.3.2 → superset_showtime-0.3.3}/Makefile +0 -0
- {superset_showtime-0.3.2 → superset_showtime-0.3.3}/README.md +0 -0
- {superset_showtime-0.3.2 → superset_showtime-0.3.3}/dev-setup.sh +0 -0
- {superset_showtime-0.3.2 → superset_showtime-0.3.3}/pypi-push.sh +0 -0
- {superset_showtime-0.3.2 → superset_showtime-0.3.3}/pyproject.toml +0 -0
- {superset_showtime-0.3.2 → superset_showtime-0.3.3}/requirements-dev.txt +0 -0
- {superset_showtime-0.3.2 → superset_showtime-0.3.3}/requirements.txt +0 -0
- {superset_showtime-0.3.2 → superset_showtime-0.3.3}/showtime/__main__.py +0 -0
- {superset_showtime-0.3.2 → superset_showtime-0.3.3}/showtime/commands/__init__.py +0 -0
- {superset_showtime-0.3.2 → superset_showtime-0.3.3}/showtime/commands/start.py +0 -0
- {superset_showtime-0.3.2 → superset_showtime-0.3.3}/showtime/core/__init__.py +0 -0
- {superset_showtime-0.3.2 → superset_showtime-0.3.3}/showtime/core/aws.py +0 -0
- {superset_showtime-0.3.2 → superset_showtime-0.3.3}/showtime/core/circus.py +0 -0
- {superset_showtime-0.3.2 → superset_showtime-0.3.3}/showtime/core/emojis.py +0 -0
- {superset_showtime-0.3.2 → superset_showtime-0.3.3}/showtime/core/github.py +0 -0
- {superset_showtime-0.3.2 → superset_showtime-0.3.3}/showtime/core/github_messages.py +0 -0
- {superset_showtime-0.3.2 → superset_showtime-0.3.3}/showtime/core/label_colors.py +0 -0
- {superset_showtime-0.3.2 → superset_showtime-0.3.3}/showtime/data/ecs-task-definition.json +0 -0
- {superset_showtime-0.3.2 → superset_showtime-0.3.3}/tests/__init__.py +0 -0
- {superset_showtime-0.3.2 → superset_showtime-0.3.3}/tests/unit/__init__.py +0 -0
- {superset_showtime-0.3.2 → superset_showtime-0.3.3}/tests/unit/test_circus.py +0 -0
- {superset_showtime-0.3.2 → superset_showtime-0.3.3}/uv.lock +0 -0
- {superset_showtime-0.3.2 → superset_showtime-0.3.3}/workflows-reference/showtime-cleanup.yml +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: superset-showtime
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.3
|
|
4
4
|
Summary: 🎪 Apache Superset ephemeral environment management with circus tent emoji state tracking
|
|
5
5
|
Project-URL: Homepage, https://github.com/apache/superset-showtime
|
|
6
6
|
Project-URL: Documentation, https://superset-showtime.readthedocs.io/
|
|
@@ -335,6 +335,8 @@ def _build_docker_image(pr_number: int, sha: str, dry_run: bool = False) -> bool
|
|
|
335
335
|
console.print("🎪 Streaming Docker build output...")
|
|
336
336
|
|
|
337
337
|
# Stream output in real-time for better user experience
|
|
338
|
+
import time
|
|
339
|
+
|
|
338
340
|
process = subprocess.Popen(
|
|
339
341
|
cmd,
|
|
340
342
|
stdout=subprocess.PIPE,
|
|
@@ -344,17 +346,25 @@ def _build_docker_image(pr_number: int, sha: str, dry_run: bool = False) -> bool
|
|
|
344
346
|
universal_newlines=True,
|
|
345
347
|
)
|
|
346
348
|
|
|
347
|
-
# Stream output line by line
|
|
349
|
+
# Stream output line by line with progress monitoring
|
|
350
|
+
last_output_time = time.time()
|
|
351
|
+
progress_timeout = 1800 # 30 min without output = stuck
|
|
352
|
+
|
|
348
353
|
for line in process.stdout:
|
|
349
354
|
console.print(f"🐳 {line.rstrip()}")
|
|
355
|
+
last_output_time = time.time() # Reset timeout on any output
|
|
350
356
|
|
|
351
|
-
#
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
357
|
+
# Check if process finished or we need to wait
|
|
358
|
+
if process.poll() is None:
|
|
359
|
+
# Process still running, wait with timeout
|
|
360
|
+
try:
|
|
361
|
+
return_code = process.wait(timeout=300) # 5 min final wait
|
|
362
|
+
except subprocess.TimeoutExpired:
|
|
363
|
+
process.kill()
|
|
364
|
+
console.print("🎪 ❌ Docker build hung - no progress for 30+ minutes")
|
|
365
|
+
return False
|
|
366
|
+
else:
|
|
367
|
+
return_code = process.returncode
|
|
358
368
|
|
|
359
369
|
if return_code == 0:
|
|
360
370
|
console.print(f"🎪 ✅ Docker build succeeded: {tag}")
|
|
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
|
{superset_showtime-0.3.2 → superset_showtime-0.3.3}/workflows-reference/showtime-cleanup.yml
RENAMED
|
File without changes
|