Skip to content

Commit

Permalink
Merge pull request #632 from gbregman/devel
Browse files Browse the repository at this point in the history
Don't display stack trace for error to delete namespace qos entry.
  • Loading branch information
gbregman authored May 9, 2024
2 parents f44f2ab + 9094820 commit 504e8db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion control/grpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -1170,7 +1170,7 @@ def remove_namespace_from_state(self, nqn, nsid, context):
try:
self.gateway_state.remove_namespace_qos(nqn, str(nsid))
except Exception:
self.logger.exception(f"Error removing namespace's QOS limits, they might not have been set")
self.logger.warning(f"Error removing namespace's QOS limits, they might not have been set")
pass
try:
self.gateway_state.remove_namespace(nqn, str(nsid))
Expand Down

0 comments on commit 504e8db

Please sign in to comment.