Skip to content

Commit

Permalink
fix integration issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Peddle committed Dec 12, 2023
1 parent 6f140c0 commit 4a41848
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions potassium/potassium.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,8 +268,8 @@ def status():
res = make_response({
"gpu_available": cur_status.gpu_available,
"sequence_number": cur_status.sequence_number,
"idle_time": cur_status.idle_time,
"inference_time": cur_status.longest_inference_time,
"idle_time": int(cur_status.idle_time*1000),
"inference_time": int(cur_status.longest_inference_time*1000),
})

res.status_code = 200
Expand Down

0 comments on commit 4a41848

Please sign in to comment.