Skip to content

Commit 96679a6

Browse files
committed
renamed provider for computational
1 parent 163adea commit 96679a6

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

services/autoscaling/src/simcore_service_autoscaling/modules/cluster_scaling/auto_scaling_task.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from ...utils.redis import create_lock_key_and_value
1212
from ..redis import get_redis_client
1313
from ._auto_scaling_core import auto_scale_cluster
14-
from .auto_scaling_mode_computational import ComputationalAutoscaling
14+
from ._provider_computational import ComputationalAutoscaling
1515
from .auto_scaling_mode_dynamic import DynamicAutoscaling
1616

1717
_TASK_NAME: Final[str] = "Autoscaling EC2 instances"

services/autoscaling/tests/unit/test_modules_auto_scaling_computational.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
from simcore_service_autoscaling.modules.cluster_scaling._auto_scaling_core import (
5050
auto_scale_cluster,
5151
)
52-
from simcore_service_autoscaling.modules.cluster_scaling.auto_scaling_mode_computational import (
52+
from simcore_service_autoscaling.modules.cluster_scaling._provider_computational import (
5353
ComputationalAutoscaling,
5454
)
5555
from simcore_service_autoscaling.modules.dask import DaskTaskResources

services/autoscaling/tests/unit/test_utils_buffer_machines_pool_core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
DEACTIVATED_BUFFER_MACHINE_EC2_TAGS,
1515
PRE_PULLED_IMAGES_EC2_TAG_KEY,
1616
)
17-
from simcore_service_autoscaling.modules.cluster_scaling.auto_scaling_mode_computational import (
17+
from simcore_service_autoscaling.modules.cluster_scaling._provider_computational import (
1818
ComputationalAutoscaling,
1919
)
2020
from simcore_service_autoscaling.modules.cluster_scaling.auto_scaling_mode_dynamic import (

0 commit comments

Comments
 (0)