Skip to content

Commit

Permalink
🩹 Chore: add 'committed' parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
guptadev21 committed Nov 14, 2024
1 parent e073f09 commit f2b9bbb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion rapyuta_io_sdk_v2/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -792,7 +792,11 @@ def list_revisions(self, **kwargs) -> Munch:
return self.c.get(
url=f"{v2api_host}/v2/configtrees/{kwargs.get('name')}/revisions/",
headers=self.config.get_headers(**kwargs),
params={"continue": kwargs.get("cont"), "limit": kwargs.get("limit")},
params={
"continue": kwargs.get("cont"),
"limit": kwargs.get("limit"),
"committed": kwargs.get("committed"),
},
)

@handle_and_munchify_response
Expand Down

0 comments on commit f2b9bbb

Please sign in to comment.