We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9987599 + 4ee846e commit 20a9351Copy full SHA for 20a9351
manifester/helpers.py
@@ -71,6 +71,8 @@ def fetch_paginated_data(manifester, endpoint):
71
MAX_RESULTS_PER_PAGE = 100
72
elif endpoint == "pools":
73
_endpoint_url = f"{manifester.allocations_url}/{manifester.allocation_uuid}/pools"
74
+ if "stage" in manifester.allocations_url:
75
+ _endpoint_url = _endpoint_url + "?future=true"
76
_endpoint_data = manifester._subscription_pools
77
MAX_RESULTS_PER_PAGE = 50
78
else:
0 commit comments