qontract-reconcile 0.10.2.dev49__py3-none-any.whl → 0.10.2.dev50__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: qontract-reconcile
3
- Version: 0.10.2.dev49
3
+ Version: 0.10.2.dev50
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
@@ -599,7 +599,7 @@ reconcile/utils/imap_client.py,sha256=h8YDiCSCvroErhpH_-KGYI7Y2WU2Q2oSpuxDFbOkSb
599
599
  reconcile/utils/instrumented_wrappers.py,sha256=aAO4q6LMpHjJIaFdrouwCEIEl5u3thCCBPSuoEloC60,1082
600
600
  reconcile/utils/jenkins_api.py,sha256=RaKuZmO7_lbI-hE6c_Pq2a6CQdmBVj7BcP2jR68cIbI,7081
601
601
  reconcile/utils/jira_client.py,sha256=oWi7rcAP1C59oIBTPg6kRntI25Zm4e7FyvdVYvZ9RZ8,7881
602
- reconcile/utils/jjb_client.py,sha256=T6G4n2K44nEFqnh-ASzrqiDkJDPnVJoyIyHwH-U9M40,14997
602
+ reconcile/utils/jjb_client.py,sha256=4YqeXEkO4p6QtJE_fkaD1XuLKbe9l3g0W7AVpcjJ3yg,15187
603
603
  reconcile/utils/jsonpath.py,sha256=wdxOMqR-GMpQf5vRPWRMqAF7bCiXDBkkcFfY2U4j_tk,5536
604
604
  reconcile/utils/jump_host.py,sha256=gi8vGUDgdTVwJvROvRVauFxtL0YAramhbWvG70L7AY8,5137
605
605
  reconcile/utils/keycloak.py,sha256=YWSEUGrOVqFaJUk055dKUWpLDPdDRvhcmvR-lfbmxdE,3388
@@ -778,7 +778,7 @@ tools/saas_promotion_state/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
778
778
  tools/saas_promotion_state/saas_promotion_state.py,sha256=UfwwRLS5Ya4_Nh1w5n1dvoYtchQvYE9yj1VANt2IKqI,3925
779
779
  tools/sre_checkpoints/__init__.py,sha256=CDaDaywJnmRCLyl_NCcvxi-Zc0hTi_3OdwKiFOyS39I,145
780
780
  tools/sre_checkpoints/util.py,sha256=zEDbGr18ZeHNQwW8pUsr2JRjuXIPz--WAGJxZo9sv_Y,894
781
- qontract_reconcile-0.10.2.dev49.dist-info/METADATA,sha256=wWmWGxP1x0eJkaoCP0dPkmUYEYYHnG3FFPvJxlE4gAs,24665
782
- qontract_reconcile-0.10.2.dev49.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
783
- qontract_reconcile-0.10.2.dev49.dist-info/entry_points.txt,sha256=5i9l54La3vQrDLAdwDKQWC0iG4sV9RRfOb1BpvzOWLc,698
784
- qontract_reconcile-0.10.2.dev49.dist-info/RECORD,,
781
+ qontract_reconcile-0.10.2.dev50.dist-info/METADATA,sha256=B2AMHGotzRtpMLxiYEUCPdydbBpl2lWfLQsbxypXd_A,24665
782
+ qontract_reconcile-0.10.2.dev50.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
783
+ qontract_reconcile-0.10.2.dev50.dist-info/entry_points.txt,sha256=5i9l54La3vQrDLAdwDKQWC0iG4sV9RRfOb1BpvzOWLc,698
784
+ qontract_reconcile-0.10.2.dev50.dist-info/RECORD,,
@@ -186,7 +186,11 @@ class JJB: # pylint: disable=too-many-public-methods
186
186
  if equal:
187
187
  continue
188
188
 
189
- instance, item, _ = f.replace(replace_path + "/", "").split("/")
189
+ instance, *items, _ = f.replace(replace_path + "/", "").split("/")
190
+ if len(items) != 1:
191
+ name = "/".join(items)
192
+ raise ValueError(f"Invalid job name contains '/' in {instance}: {name}")
193
+ item = items[0]
190
194
  item_type = et.parse(f).getroot().tag
191
195
  item_type = item_type.replace("hudson.model.ListView", "view")
192
196
  item_type = item_type.replace("project", "job")