File tree 1 file changed +2
-2
lines changed
src/aleph/vm/orchestrator/views
1 file changed +2
-2
lines changed 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