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 277cd9f commit 5d12408Copy full SHA for 5d12408
functions-python/batch_process_dataset/src/main.py
@@ -340,7 +340,10 @@ def process_dataset(cloud_event: CloudEvent):
340
341
if executions > 0:
342
if executions >= maximum_executions:
343
- error_message = f"[{stable_id}] Function already executed maximum times in execution: [{execution_id}]"
+ error_message = (
344
+ f"[{stable_id}] Function already executed maximum times "
345
+ f"in execution: [{execution_id}]"
346
+ )
347
logging.error(error_message)
348
return error_message
349
0 commit comments