qontract-reconcile 0.10.1rc1121__py3-none-any.whl → 0.10.1rc1122__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.1
2
2
  Name: qontract-reconcile
3
- Version: 0.10.1rc1121
3
+ Version: 0.10.1rc1122
4
4
  Summary: Collection of tools to reconcile services with their desired state as defined in the app-interface DB.
5
5
  Home-page: https://github.com/app-sre/qontract-reconcile
6
6
  Author: Red Hat App-SRE Team
@@ -838,7 +838,7 @@ tools/app_interface_metrics_exporter.py,sha256=zkwkxdAUAxjdc-pzx2_oJXG25fo0Fnyd5
838
838
  tools/app_interface_reporter.py,sha256=oZPib4HPq0aZ2Zui1QGJGk6qQdfpeihujGDBnSdKyGE,17627
839
839
  tools/glitchtip_access_reporter.py,sha256=oPBnk_YoDuljU3v0FaChzOwwnk4vap1xEE67QEjzdqs,2948
840
840
  tools/glitchtip_access_revalidation.py,sha256=8kbBJk04mkq28kWoRDDkfCGIF3GRg3pJrFAh1sW0dbk,2821
841
- tools/qontract_cli.py,sha256=41PVX-P3Q5XMRQLciaTJu1BlW4iZZT8Tjhces8b1SmI,130614
841
+ tools/qontract_cli.py,sha256=1YA7gDYsU-QW1DaTCpz7zPWxsXuLRDLuO0u9HpiL6U0,130561
842
842
  tools/sd_app_sre_alert_report.py,sha256=e9vAdyenUz2f5c8-z-5WY0wv-SJ9aePKDH2r4IwB6pc,5063
843
843
  tools/template_validation.py,sha256=qpKYaTgk0GOPGa2Ct5_5sKdwIHtCAKIBGzsMPuJU5fw,3371
844
844
  tools/cli_commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -869,8 +869,8 @@ tools/test/test_qontract_cli.py,sha256=_D61RFGAN5x44CY1tYbouhlGXXABwYfxKSWSQx3Jr
869
869
  tools/test/test_saas_promotion_state.py,sha256=dy4kkSSAQ7bC0Xp2CociETGN-2aABEfL6FU5D9Jl00Y,6056
870
870
  tools/test/test_sd_app_sre_alert_report.py,sha256=v363r9zM7__0kR5K6mvJoGFcM9BvE33fWAayrqkpojA,2116
871
871
  tools/test/test_sre_checkpoints.py,sha256=SKqPPTl9ua0RFdSSofnoQX-JZE6dFLO3LRhfQzqtfh8,2607
872
- qontract_reconcile-0.10.1rc1121.dist-info/METADATA,sha256=jfB4MfYDF91IK8Gfbd9U03A7hlY9rBUZba1zHioJJbw,2213
873
- qontract_reconcile-0.10.1rc1121.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
874
- qontract_reconcile-0.10.1rc1121.dist-info/entry_points.txt,sha256=GKQqCl2j2X1BJQ69een6rHcR26PmnxnONLNOQB-nRjY,491
875
- qontract_reconcile-0.10.1rc1121.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
876
- qontract_reconcile-0.10.1rc1121.dist-info/RECORD,,
872
+ qontract_reconcile-0.10.1rc1122.dist-info/METADATA,sha256=SJBDdVh53pJzF3BJNrVr8eAXEQhzEkgOpsSZy1kKv7g,2213
873
+ qontract_reconcile-0.10.1rc1122.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
874
+ qontract_reconcile-0.10.1rc1122.dist-info/entry_points.txt,sha256=GKQqCl2j2X1BJQ69een6rHcR26PmnxnONLNOQB-nRjY,491
875
+ qontract_reconcile-0.10.1rc1122.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
876
+ qontract_reconcile-0.10.1rc1122.dist-info/RECORD,,
tools/qontract_cli.py CHANGED
@@ -2906,13 +2906,12 @@ def change_log_tracking(ctx):
2906
2906
  "merged_at": change_log_item.merged_at,
2907
2907
  "apps": ", ".join(change_log_item.apps),
2908
2908
  "changes": ", ".join(covered_change_types_descriptions),
2909
- "error": change_log_item.error,
2910
2909
  }
2911
2910
  data.append(item)
2912
2911
 
2913
2912
  # TODO(mafriedm): Fix this
2914
2913
  ctx.obj["options"]["sort"] = False
2915
- columns = ["commit", "merged_at", "apps", "changes", "error"]
2914
+ columns = ["commit", "merged_at", "apps", "changes"]
2916
2915
  print_output(ctx.obj["options"], data, columns)
2917
2916
 
2918
2917