qontract-reconcile 0.10.2.dev194__py3-none-any.whl → 0.10.2.dev195__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.
- {qontract_reconcile-0.10.2.dev194.dist-info → qontract_reconcile-0.10.2.dev195.dist-info}/METADATA +1 -1
- {qontract_reconcile-0.10.2.dev194.dist-info → qontract_reconcile-0.10.2.dev195.dist-info}/RECORD +5 -5
- reconcile/utils/slack_api.py +2 -2
- {qontract_reconcile-0.10.2.dev194.dist-info → qontract_reconcile-0.10.2.dev195.dist-info}/WHEEL +0 -0
- {qontract_reconcile-0.10.2.dev194.dist-info → qontract_reconcile-0.10.2.dev195.dist-info}/entry_points.txt +0 -0
{qontract_reconcile-0.10.2.dev194.dist-info → qontract_reconcile-0.10.2.dev195.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: qontract-reconcile
|
3
|
-
Version: 0.10.2.
|
3
|
+
Version: 0.10.2.dev195
|
4
4
|
Summary: Collection of tools to reconcile services with their desired state as defined in the app-interface DB.
|
5
5
|
Project-URL: homepage, https://github.com/app-sre/qontract-reconcile
|
6
6
|
Project-URL: repository, https://github.com/app-sre/qontract-reconcile
|
{qontract_reconcile-0.10.2.dev194.dist-info → qontract_reconcile-0.10.2.dev195.dist-info}/RECORD
RENAMED
@@ -662,7 +662,7 @@ reconcile/utils/ruamel.py,sha256=FzL4_L0FnMOUZmgThrZSMJs5MTdXwiy-E9MZWfk8bh8,397
|
|
662
662
|
reconcile/utils/secret_reader.py,sha256=MaP56KZaAE35EyYbgAitdm6fUSxdzWeGFSOym9qiZkw,10206
|
663
663
|
reconcile/utils/semver_helper.py,sha256=-WfPOMSA2v1h7hT3PwVf-Htg7wOsoKlQC1JdmDX2Ars,1268
|
664
664
|
reconcile/utils/sharding.py,sha256=DDBHfs5TT9UgjmzewiXUjbncnrPuceAZWeOA4veGa7s,843
|
665
|
-
reconcile/utils/slack_api.py,sha256=
|
665
|
+
reconcile/utils/slack_api.py,sha256=IcnXmQrKXQwYEhKfXTBmOeuYKxpSG2Wvc1Fq-Nf1Xgg,17551
|
666
666
|
reconcile/utils/slo_document_manager.py,sha256=CPgM2oH4AVzBqenakWo59R5yfwB62tnxSnSOHgir7l8,9500
|
667
667
|
reconcile/utils/smtp_client.py,sha256=0xefB4I9E5eBB-FlxFJYjvz3Kvuqi_K3Ma_Wk0NAQKM,2779
|
668
668
|
reconcile/utils/sqs_gateway.py,sha256=XNIf3PY4UCPNufP2Ul0UJj3fKlt5larBba-VTT-41Fg,2265
|
@@ -809,7 +809,7 @@ tools/saas_promotion_state/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
|
|
809
809
|
tools/saas_promotion_state/saas_promotion_state.py,sha256=UfwwRLS5Ya4_Nh1w5n1dvoYtchQvYE9yj1VANt2IKqI,3925
|
810
810
|
tools/sre_checkpoints/__init__.py,sha256=CDaDaywJnmRCLyl_NCcvxi-Zc0hTi_3OdwKiFOyS39I,145
|
811
811
|
tools/sre_checkpoints/util.py,sha256=zEDbGr18ZeHNQwW8pUsr2JRjuXIPz--WAGJxZo9sv_Y,894
|
812
|
-
qontract_reconcile-0.10.2.
|
813
|
-
qontract_reconcile-0.10.2.
|
814
|
-
qontract_reconcile-0.10.2.
|
815
|
-
qontract_reconcile-0.10.2.
|
812
|
+
qontract_reconcile-0.10.2.dev195.dist-info/METADATA,sha256=MHzXq3sy6lXSH9U2kaPoAkQ9w9LDLvg6vK7zNg4CbwQ,24555
|
813
|
+
qontract_reconcile-0.10.2.dev195.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
814
|
+
qontract_reconcile-0.10.2.dev195.dist-info/entry_points.txt,sha256=5i9l54La3vQrDLAdwDKQWC0iG4sV9RRfOb1BpvzOWLc,698
|
815
|
+
qontract_reconcile-0.10.2.dev195.dist-info/RECORD,,
|
reconcile/utils/slack_api.py
CHANGED
@@ -463,7 +463,7 @@ class SlackApi:
|
|
463
463
|
for r in result[result_key]:
|
464
464
|
results[r["id"]] = r
|
465
465
|
|
466
|
-
cursor = result
|
466
|
+
cursor = (result.get("response_metadata") or {}).get("next_cursor") or ""
|
467
467
|
|
468
468
|
if not cursor:
|
469
469
|
break
|
@@ -517,7 +517,7 @@ class SlackApi:
|
|
517
517
|
if not keep_fetching:
|
518
518
|
break
|
519
519
|
|
520
|
-
cursor = response
|
520
|
+
cursor = (response.get("response_metadata") or {}).get("next_cursor") or ""
|
521
521
|
if not cursor:
|
522
522
|
break
|
523
523
|
|
{qontract_reconcile-0.10.2.dev194.dist-info → qontract_reconcile-0.10.2.dev195.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|