Skip to content

Commit c168917

Browse files
committed
@pcrespov review: typo
1 parent 6628631 commit c168917

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

services/autoscaling/src/simcore_service_autoscaling/modules/auto_scaling_core.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -441,13 +441,13 @@ async def _start_warm_buffer_instances(
441441
iter(app_settings.AUTOSCALING_EC2_INSTANCES.EC2_INSTANCES_ALLOWED_TYPES)
442442
),
443443
)
444-
free_starteable_warm_buffers_to_replace_hot_buffers = [
444+
free_startable_warm_buffers_to_replace_hot_buffers = [
445445
warm_buffer.ec2_instance
446446
for warm_buffer in cluster.buffer_ec2s
447447
if (warm_buffer.ec2_instance.type == hot_buffer_instance_type)
448448
and not warm_buffer.assigned_tasks
449449
]
450-
instances_to_start += free_starteable_warm_buffers_to_replace_hot_buffers[
450+
instances_to_start += free_startable_warm_buffers_to_replace_hot_buffers[
451451
: app_settings.AUTOSCALING_EC2_INSTANCES.EC2_INSTANCES_MACHINES_BUFFER
452452
- len(cluster.buffer_drained_nodes)
453453
]

0 commit comments

Comments
 (0)