exchange-keyshare 0.1.1__py3-none-any.whl → 0.1.2__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.
- exchange_keyshare/setup.py +5 -1
- {exchange_keyshare-0.1.1.dist-info → exchange_keyshare-0.1.2.dist-info}/METADATA +1 -1
- {exchange_keyshare-0.1.1.dist-info → exchange_keyshare-0.1.2.dist-info}/RECORD +5 -5
- {exchange_keyshare-0.1.1.dist-info → exchange_keyshare-0.1.2.dist-info}/WHEEL +0 -0
- {exchange_keyshare-0.1.1.dist-info → exchange_keyshare-0.1.2.dist-info}/entry_points.txt +0 -0
exchange_keyshare/setup.py
CHANGED
|
@@ -265,7 +265,7 @@ def poll_stack_deletion(
|
|
|
265
265
|
stack = stacks_response["Stacks"][0]
|
|
266
266
|
stack_status = stack.get("StackStatus", "UNKNOWN")
|
|
267
267
|
|
|
268
|
-
# Get resource events
|
|
268
|
+
# Get resource events (only delete-related)
|
|
269
269
|
try:
|
|
270
270
|
events_response = cfn.describe_stack_events(StackName=stack_name)
|
|
271
271
|
for event in events_response["StackEvents"]:
|
|
@@ -278,6 +278,10 @@ def poll_stack_deletion(
|
|
|
278
278
|
if resource_type == "AWS::CloudFormation::Stack":
|
|
279
279
|
continue
|
|
280
280
|
|
|
281
|
+
# Only track delete-related statuses
|
|
282
|
+
if "DELETE" not in status:
|
|
283
|
+
continue
|
|
284
|
+
|
|
281
285
|
# Update if this is a newer status for this resource
|
|
282
286
|
if logical_id not in resources or _is_newer_delete_status(status, resources[logical_id].status):
|
|
283
287
|
resources[logical_id] = ResourceStatus(
|
|
@@ -4,14 +4,14 @@ exchange_keyshare/cli.py,sha256=jYDKMvVtvm35Q5L1CNdNfuq_XF_6oq868nAK3Jg11no,987
|
|
|
4
4
|
exchange_keyshare/config.py,sha256=Db0hKKfBHISC-tnHp9blTSE2_lIuC1QdDxMuL3rATxs,2816
|
|
5
5
|
exchange_keyshare/keys.py,sha256=Lyl7vgJ4Bo0XA4iBKJyRWGd1ZpHPmrAuY7T0-sUWpOM,3278
|
|
6
6
|
exchange_keyshare/schema.py,sha256=BRv22tV3TifkoADVlMPGPNbhc9DKHtPq56s1EDcy70w,3818
|
|
7
|
-
exchange_keyshare/setup.py,sha256=
|
|
7
|
+
exchange_keyshare/setup.py,sha256=fbWWl3meMWQ1RLAGcGxrBlDhxu_Np3Vybcu1GtytzfU,12929
|
|
8
8
|
exchange_keyshare/commands/__init__.py,sha256=gQ6tnU0Rvm0-ESWFUBU-KDl5dpNOpUTG509hXOQQjwY,27
|
|
9
9
|
exchange_keyshare/commands/config.py,sha256=1MXPIMWiSy1KerWdr9r8y6P7aA2YQRwk4wWeF7duSR0,1065
|
|
10
10
|
exchange_keyshare/commands/keys.py,sha256=NX_BDl2-iWoLso5ep9kQNCjx5r7SszUg2MY62qJ-eHc,14610
|
|
11
11
|
exchange_keyshare/commands/setup.py,sha256=VXvCXkTwlEIYOyflh8IGpBJrf8QiTeGIq2Mb1RghFic,5765
|
|
12
12
|
exchange_keyshare/commands/teardown.py,sha256=hHS9k6FNpoF9Dk4zrIHlKJzTmDVLy89fg39ACs_jPU4,7514
|
|
13
13
|
exchange_keyshare/templates/stack.yaml,sha256=KdNEeTFHm24pxQbSKzWxi2VyyjkKBYB9mYlBvSA6gfQ,6456
|
|
14
|
-
exchange_keyshare-0.1.
|
|
15
|
-
exchange_keyshare-0.1.
|
|
16
|
-
exchange_keyshare-0.1.
|
|
17
|
-
exchange_keyshare-0.1.
|
|
14
|
+
exchange_keyshare-0.1.2.dist-info/METADATA,sha256=irCUjn7m1APvpsgZw6SqO4ULr_Bh2bB2W6m6y9K3OLQ,342
|
|
15
|
+
exchange_keyshare-0.1.2.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
16
|
+
exchange_keyshare-0.1.2.dist-info/entry_points.txt,sha256=4SeV5jhxW3C6plg8WefZdLhPBRqmYErdKfnGTUEWmmo,65
|
|
17
|
+
exchange_keyshare-0.1.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|