Skip to content

Commit bae0fb9

Browse files
authored
ref(deletes): remove sentry warning (#7698)
1 parent eeaba2a commit bae0fb9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

snuba/lw_deletions/strategy.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,11 +95,10 @@ def submit(self, message: Message[ValuesBatch[KafkaPayload]]) -> None:
9595
self._execute_delete(conditions)
9696
else:
9797
self.__metrics.increment("delete_skipped")
98-
except TooManyOngoingMutationsError as err:
98+
except TooManyOngoingMutationsError:
9999
# backpressure is applied while we wait for the
100100
# currently ongoing mutations to finish
101101
self.__metrics.increment("too_many_ongoing_mutations")
102-
logger.warning(str(err), exc_info=True)
103102
raise MessageRejected
104103
except QueryException as err:
105104
cause = err.__cause__

0 commit comments

Comments
 (0)