@@ -273,6 +273,7 @@ def handle(self, *args, **options):
273
273
status = AllocationStatusChoice .objects .get (name = 'Active' ),
274
274
start_date = start_date ,
275
275
end_date = end_date ,
276
+ is_changeable = True ,
276
277
justification = 'I need access to my nodes.'
277
278
)
278
279
@@ -305,6 +306,7 @@ def handle(self, *args, **options):
305
306
status = AllocationStatusChoice .objects .get (name = 'Active' ),
306
307
start_date = start_date ,
307
308
end_date = datetime .datetime .now () + relativedelta (days = 10 ),
309
+ is_changeable = True ,
308
310
justification = 'I need access to university cluster.'
309
311
)
310
312
@@ -359,6 +361,7 @@ def handle(self, *args, **options):
359
361
start_date = start_date ,
360
362
end_date = end_date ,
361
363
quantity = 10 ,
364
+ is_changeable = True ,
362
365
justification = 'I need extra storage.'
363
366
)
364
367
@@ -378,6 +381,7 @@ def handle(self, *args, **options):
378
381
status = AllocationStatusChoice .objects .get (name = 'Active' ),
379
382
start_date = start_date ,
380
383
end_date = end_date ,
384
+ is_changeable = True ,
381
385
justification = 'I need compute time on metered cluster.'
382
386
)
383
387
allocation_obj .resources .add (
@@ -484,6 +488,7 @@ def handle(self, *args, **options):
484
488
status = AllocationStatusChoice .objects .get (name = 'Active' ),
485
489
start_date = start_date ,
486
490
end_date = end_date ,
491
+ is_changeable = True ,
487
492
justification = 'Need to host my own site.'
488
493
)
489
494
@@ -520,6 +525,7 @@ def handle(self, *args, **options):
520
525
status = AllocationStatusChoice .objects .get (name = 'Active' ),
521
526
start_date = start_date ,
522
527
end_date = end_date ,
528
+ is_changeable = True ,
523
529
justification = 'Need extra storage for webserver.'
524
530
)
525
531
0 commit comments