Merge branch 'master' into dev

pull/9417/head
Nicholas Tindle 2025-02-04 08:45:34 -06:00
commit a7d545cd5d
No known key found for this signature in database
GPG Key ID: C4A2154D91363A47
1 changed files with 10 additions and 10 deletions

View File

@ -210,16 +210,16 @@ def execute_node(
):
yield execution
# Update execution status and spend credits
res = update_execution(ExecutionStatus.COMPLETED)
s = input_size + output_size
t = (
(res.end_time - res.start_time).total_seconds()
if res.end_time and res.start_time
else 0
)
data.data = input_data
db_client.spend_credits(data, s, t)
# Update execution status and spend credits
res = update_execution(ExecutionStatus.COMPLETED)
s = input_size + output_size
t = (
(res.end_time - res.start_time).total_seconds()
if res.end_time and res.start_time
else 0
)
data.data = input_data
db_client.spend_credits(data, s, t)
except Exception as e:
error_msg = str(e)