Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…o dev
  • Loading branch information
Dr0p42 committed Jun 19, 2024
2 parents 31d2474 + 3867039 commit 39d0ac9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def post_workspace_storage_object(self,
)
return response
else:
raise FileNotFoundError(f"File '{src_file}' does not exist.")
raise FileNotFoundError(f"File not found: {src_file}")

def get_workspace_storage_object(self,
workspace_id: str = "",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ def delete_workspace_storage_object(self,
)
return self.__handle_response(api_response)

@BaseAPIAdaptor.service_status_decorator
def generate_credentials(self, workspace_id :str, storage_name: str) -> dict:

_url = f"{self.host}/workspace/{workspace_id}/storage/credentials/"
Expand Down

0 comments on commit 39d0ac9

Please sign in to comment.