Skip to content

Commit

Permalink
add support for metrics api
Browse files Browse the repository at this point in the history
  • Loading branch information
kthare10 committed May 10, 2024
1 parent 74cbf84 commit 132e229
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fabric_cf/orchestrator/orchestrator_proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ def get_poas(self, *, token: str, sliver_id: str = None,
except Exception as e:
return Status.FAILURE, e

def get_metrics(self, *, token: str = None, excluded_projects: List[str]) -> Tuple[Status, Union[Exception, List[dict]]]:
def get_metrics(self, *, token: str = None, excluded_projects: List[str] = None) -> Tuple[Status, Union[Exception, List[dict]]]:
"""
Modify a slice
@param token fabric token
Expand Down

0 comments on commit 132e229

Please sign in to comment.