File tree 2 files changed +3
-3
lines changed
src/aleph/vm/orchestrator/views
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ dependencies = [
51
51
" py-cpuinfo==9" ,
52
52
" pydantic[dotenv]~=1.10.13" ,
53
53
" pyroute2==0.7.12" ,
54
- " python-cpuid==0.1" ,
54
+ " python-cpuid==0.1.1 " ,
55
55
" pyyaml==6.0.1" ,
56
56
" qmp==1.1" ,
57
57
" schedule==1.2.1" ,
Original file line number Diff line number Diff line change @@ -440,13 +440,13 @@ async def update_allocations(request: web.Request):
440
440
except Exception as error :
441
441
# Handle unknown exception separately, to avoid leaking data
442
442
logger .exception ("Unhandled Error while starting VM '%s': %s" , instance_hash , error )
443
- scheduling_errors [vm_hash ] = Exception ("Unhandled Error" )
443
+ scheduling_errors [instance_hash ] = Exception ("Unhandled Error" )
444
444
445
445
# Log unsupported features
446
446
if allocation .on_demand_vms :
447
447
logger .warning ("Not supported yet: 'allocation.on_demand_vms'" )
448
448
if allocation .jobs :
449
- logger .warning ("Not supported yet: 'allocation.on_demand_vms '" )
449
+ logger .warning ("Not supported yet: 'allocation.jobs '" )
450
450
451
451
failing = set (scheduling_errors .keys ())
452
452
successful = allocations - failing
You can’t perform that action at this time.
0 commit comments