Skip to content

Commit

Permalink
loader
Browse files Browse the repository at this point in the history
  • Loading branch information
hnipun committed Oct 18, 2024
1 parent 91bcf82 commit 7fd0226
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions app/server/labml_app/scripts/check_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@

init_mongo_db()

uuid = 'c48ac8bc8ccb11efb77ba088c26a9b7a'
for i in range(8):
print(f'{uuid}_{i}')
r = run.get(f'{uuid}_{i}')
print(r.status.load().run_status.load())
uuid = 'c48ac8bc8ccb11efb77ba088c26a9b7a_1'
r = run.get(uuid)
print(r.status.load().run_status.load())
# for i in range(8):
# print(f'{uuid}_{i}')
# r = run.get(f'{uuid}_{i}')
# print(r.status.load().run_status.load())

0 comments on commit 7fd0226

Please sign in to comment.