We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c96b534 commit 86159a4Copy full SHA for 86159a4
google/cloud/bigtable/data/_async/_mutate_rows.py
@@ -144,9 +144,11 @@ async def start(self):
144
all_errors: list[Exception] = []
145
for idx, exc_list in self.errors.items():
146
if len(exc_list) == 0:
147
- raise core_exceptions.ClientError(
+ exc = core_exceptions.ClientError(
148
f"Mutation {idx} failed with no associated errors"
149
)
150
+ self._operation_metrics.end_with_status(exc)
151
+ raise exc
152
elif len(exc_list) == 1:
153
cause_exc = exc_list[0]
154
else:
0 commit comments