Skip to content

Commit 6b1e696

Browse files
committed
fixed imports
1 parent 26d0910 commit 6b1e696

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

datacrunch/containers/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
VolumeMount,
99
SecretMount,
1010
SharedFileSystemMount,
11-
ScratchMount,
11+
GeneralStorageMount,
1212
VolumeMountType,
1313
Container,
1414
ContainerRegistryCredentials,

examples/containers/container_deployments_example.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
QueueLoadScalingTrigger,
2121
UtilizationScalingTrigger,
2222
HealthcheckSettings,
23-
ScratchMount,
23+
GeneralStorageMount,
2424
SecretMount,
2525
SharedFileSystemMount,
2626
ContainerRegistrySettings,
@@ -97,7 +97,7 @@ def main() -> None:
9797
path="/health"
9898
),
9999
volume_mounts=[
100-
ScratchMount(
100+
GeneralStorageMount(
101101
mount_path="/data"
102102
),
103103
# Optional: Fileset secret

0 commit comments

Comments
 (0)