From 2eef19a583c3d8f1837273abb0117fe238e0e89c Mon Sep 17 00:00:00 2001 From: Pallab Pain Date: Tue, 27 Feb 2024 15:01:38 +0530 Subject: [PATCH] fix(v2client): removes list limit for static-routes This commit removes the list limit for v2 static routes API. --- riocli/v2client/client.py | 1 - 1 file changed, 1 deletion(-) diff --git a/riocli/v2client/client.py b/riocli/v2client/client.py index 6fbf8b6f..28e9857f 100644 --- a/riocli/v2client/client.py +++ b/riocli/v2client/client.py @@ -339,7 +339,6 @@ def list_static_routes( while True: params.update({ "continue": offset, - "limit": 50, }) response = RestClient(url).method(HttpMethod.GET).query_param( params).headers(headers).execute()