Skip to content

Commit 26d0910

Browse files
committed
renamed ScratchMount to GeneralStorageMount
1 parent bcde87e commit 26d0910

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Added
1111

1212
- Added `SharedFileSystemMount` class for container sfs support
13-
- Added `SecretMount` and `ScratchMount` classes that inherit from base `VolumeMount`
13+
- Added `SecretMount` and `GeneralStorageMount` classes that inherit from base `VolumeMount`
1414

1515
### Changed
1616

datacrunch/containers/containers.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,12 +136,12 @@ class VolumeMount:
136136

137137
@dataclass_json(undefined=Undefined.EXCLUDE)
138138
@dataclass
139-
class ScratchMount(VolumeMount):
140-
"""Scratch volume mount configuration.
139+
class GeneralStorageMount(VolumeMount):
140+
"""General storage volume mount configuration.
141141
"""
142142

143143
def __init__(self, mount_path: str):
144-
"""Initialize a scratch volume mount.
144+
"""Initialize a general scratch volume mount.
145145
146146
Args:
147147
mount_path: Path where the volume should be mounted in the container.

0 commit comments

Comments
 (0)