mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
worker change for time
This commit is contained in:
@@ -296,10 +296,11 @@ class FunctionsV1 extends Worker
|
||||
->setAttribute('stderr', $executionResponse['stderr'])
|
||||
->setAttribute('time', $executionResponse['time']);
|
||||
} catch (\Throwable $th) {
|
||||
$endtime = \microtime(true);
|
||||
$time = $endtime - $execution->getCreatedAt();
|
||||
$created = new DateTime($execution->getCreatedAt());
|
||||
$now = Database::getCurrentDateTimeObject();
|
||||
$interval = $now->diff($created);
|
||||
$execution
|
||||
->setAttribute('time', $time)
|
||||
->setAttribute('time', (float)$interval->format('%s.%f'))
|
||||
->setAttribute('status', 'failed')
|
||||
->setAttribute('statusCode', $th->getCode())
|
||||
->setAttribute('stderr', $th->getMessage());
|
||||
|
||||
Reference in New Issue
Block a user