Skip to content

Commit

Permalink
fix query timing calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
nekufa committed Feb 11, 2020
1 parent 25c8ddb commit bd4275f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion php/Job/Database/Execute.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function run()

return [
'result' => $result,
'timing' => microtime(true) - $start,
'timing' => 1000 * (microtime(true) - $start),
];
}
}

0 comments on commit bd4275f

Please sign in to comment.