You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
quads --shrink --host <host> --now Would you like to shrink a future allocation of <host> ? (y/N): Traceback (most recent call last): File "/usr/bin/quads", line 33, in <module> sys.exit(load_entry_point('quads==2.0', 'console_scripts', 'quads')()) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/lib/python3.12/site-packages/quads/cli/main.py", line 64, in main _exit_code = qcli.run( ^^^^^^^^^ File "/usr/lib/python3.12/site-packages/quads/cli/cli.py", line 65, in run exit_code = action_meth() ^^^^^^^^^^^^^ File "/usr/lib/python3.12/site-packages/quads/cli/cli.py", line 755, in action_shrink if end_date < schedule.start or end_date > schedule.end or (not now and end_date < threshold): ^^^^^^^^^^^^^^^^^^^^^^^^^ TypeError: '<' not supported between instances of 'datetime.datetime' and 'str'
Additional context
add in a exception to display a message for this side case where if the host is not currently active and has a future schedule for the host (was scheduled to go into a decom cloud assignment) shrinking that future schedule(s) to cloud01 will display an error message over attempting to perform the shrink.
The text was updated successfully, but these errors were encountered:
@QuantumPosix you need to use --mod-schedule for future schedules, --shrink only works on the current active schedule. This is what --mod-schedule is for since it needs the argument for the --schedule-id. I don't think this is a bug, this is by design.
rpm -qa | grep quads
and/orquads --version
): "QUADS version 2.1.6 bowie"Describe the bug
Went to shrink the with no active schedule but a future schedule to start on the next cycle. Gave following traceback:
To Reproduce
quads --ls-schedule --host <host>
Default cloud: cloud01 Current cloud: cloud01 753| start=2025-02-16T22:00, end=2025-03-23T22:00, cloud=cloud14 838| start=2025-03-30T22:00, end=2025-05-04T22:00, cloud=cloud50
quads --shrink --host <host> --now
Would you like to shrink a future allocation of <host> ? (y/N): Traceback (most recent call last): File "/usr/bin/quads", line 33, in <module> sys.exit(load_entry_point('quads==2.0', 'console_scripts', 'quads')()) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/lib/python3.12/site-packages/quads/cli/main.py", line 64, in main _exit_code = qcli.run( ^^^^^^^^^ File "/usr/lib/python3.12/site-packages/quads/cli/cli.py", line 65, in run exit_code = action_meth() ^^^^^^^^^^^^^ File "/usr/lib/python3.12/site-packages/quads/cli/cli.py", line 755, in action_shrink if end_date < schedule.start or end_date > schedule.end or (not now and end_date < threshold): ^^^^^^^^^^^^^^^^^^^^^^^^^ TypeError: '<' not supported between instances of 'datetime.datetime' and 'str'
Additional context
add in a exception to display a message for this side case where if the host is not currently active and has a future schedule for the host (was scheduled to go into a decom cloud assignment) shrinking that future schedule(s) to cloud01 will display an error message over attempting to perform the shrink.
The text was updated successfully, but these errors were encountered: