superset-showtime 0.4.8__py3-none-any.whl → 0.4.9__py3-none-any.whl
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.
- showtime/__init__.py +1 -1
- showtime/core/pull_request.py +5 -2
- {superset_showtime-0.4.8.dist-info → superset_showtime-0.4.9.dist-info}/METADATA +1 -1
- {superset_showtime-0.4.8.dist-info → superset_showtime-0.4.9.dist-info}/RECORD +6 -6
- {superset_showtime-0.4.8.dist-info → superset_showtime-0.4.9.dist-info}/WHEEL +0 -0
- {superset_showtime-0.4.8.dist-info → superset_showtime-0.4.9.dist-info}/entry_points.txt +0 -0
showtime/__init__.py
CHANGED
showtime/core/pull_request.py
CHANGED
|
@@ -397,11 +397,14 @@ class PullRequest:
|
|
|
397
397
|
if action in ["create_environment", "rolling_update", "auto_sync"]:
|
|
398
398
|
if self.current_show and self.current_show.status in [
|
|
399
399
|
"building",
|
|
400
|
-
"built",
|
|
400
|
+
"built",
|
|
401
401
|
"deploying",
|
|
402
|
-
"running",
|
|
403
402
|
]:
|
|
404
403
|
return False # Another job active
|
|
404
|
+
|
|
405
|
+
# For rolling updates, running environments are OK to update
|
|
406
|
+
if action in ["rolling_update", "auto_sync"] and self.current_show and self.current_show.status == "running":
|
|
407
|
+
return True # Allow rolling updates on running environments
|
|
405
408
|
|
|
406
409
|
if dry_run:
|
|
407
410
|
print(f"🎪 [DRY-RUN] Would atomically claim PR for {action}")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: superset-showtime
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.9
|
|
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/
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
showtime/__init__.py,sha256=
|
|
1
|
+
showtime/__init__.py,sha256=lTJs8tOZFpuWaI6-1gqI-aev4BAX-KGCMG3TPglSKxQ,448
|
|
2
2
|
showtime/__main__.py,sha256=EVaDaTX69yIhCzChg99vqvFSCN4ELstEt7Mpb9FMZX8,109
|
|
3
3
|
showtime/cli.py,sha256=faFM6pe3gz49_1KrzUeri7dQffqz4WP92JmGxPaIOC0,25249
|
|
4
4
|
showtime/core/__init__.py,sha256=54hbdFNGrzuNMBdraezfjT8Zi6g221pKlJ9mREnKwCw,34
|
|
@@ -7,10 +7,10 @@ showtime/core/emojis.py,sha256=MHEDuPIdfNiop4zbNLuviz3eY05QiftYSHHCVbkfKhw,2129
|
|
|
7
7
|
showtime/core/github.py,sha256=uETvKDO2Yhpqg3fxLtrKaCuZR3b-1LVmgnf5aLcqrAQ,9988
|
|
8
8
|
showtime/core/github_messages.py,sha256=MfgwCukrEsWWesMsuL8saciDgP4nS-gijzu8DXr-Alg,7450
|
|
9
9
|
showtime/core/label_colors.py,sha256=efhbFnz_3nqEnEqmgyF6_hZbxtCu_fmb68BIIUpSsnk,3895
|
|
10
|
-
showtime/core/pull_request.py,sha256=
|
|
10
|
+
showtime/core/pull_request.py,sha256=EMeceF2NgqNyL_cCNv4345_2Cb6l0cAXb8lNV9pu8hc,21924
|
|
11
11
|
showtime/core/show.py,sha256=-nMRShKWTjXGVuxuxrc0WK6l8ON-8iYm5QA8uvGoMOk,9806
|
|
12
12
|
showtime/data/ecs-task-definition.json,sha256=2acmqoF-3CxaBJP_VDkMMpG_U2RI4VPk1JvFOprMFyc,2098
|
|
13
|
-
superset_showtime-0.4.
|
|
14
|
-
superset_showtime-0.4.
|
|
15
|
-
superset_showtime-0.4.
|
|
16
|
-
superset_showtime-0.4.
|
|
13
|
+
superset_showtime-0.4.9.dist-info/METADATA,sha256=a-Mvygwwxhx3DLMVUUpFi8np70nF6RR1VSj-1fB-VLQ,12052
|
|
14
|
+
superset_showtime-0.4.9.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
15
|
+
superset_showtime-0.4.9.dist-info/entry_points.txt,sha256=rDW7oZ57mqyBUS4N_3_R7bZNGVHB-104jwmY-hHC_ck,85
|
|
16
|
+
superset_showtime-0.4.9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|