We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0df93a commit ffcc221Copy full SHA for ffcc221
execution/execution.py
@@ -822,7 +822,7 @@ def patch_systems():
822
This def will collect all the entries from patch systems
823
"""
824
825
- url = "https://console.redhat.com/api/patch/v1/systems"
+ url = "https://console.redhat.com/api/patch/v3/systems"
826
response = connection_request(url)
827
check_authentication(response)
828
@@ -842,7 +842,7 @@ def patch_systems():
842
count = 0
843
for page in range(0, num_of_pages):
844
url = (
845
- "https://console.redhat.com/api/patch/v1/systems?limit="
+ "https://console.redhat.com/api/patch/v3/systems?limit="
846
+ str(conf.ITEMS_PER_PAGE)
847
+ "&offset="
848
+ str(count)
0 commit comments