Skip to content

Commit

Permalink
Merge pull request #3118 from radical-cybertools/hotfix/resource_config
Browse files Browse the repository at this point in the history
fixed type for `LFS_SIZE_PER_NODE`
  • Loading branch information
andre-merzky authored Jan 17, 2024
2 parents dfe20f5 + 404de41 commit 4271319
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/radical/pilot/resource_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ class ResourceConfig(ru.TypedDict):
PYTHON_INTERPRETER : str ,
LAUNCH_METHODS : {str: None} ,
LFS_PATH_PER_NODE : str ,
LFS_SIZE_PER_NODE : str ,
LFS_SIZE_PER_NODE : int ,
TASK_TMP : str ,
MEM_PER_NODE : int ,
CORES_PER_NODE : int ,
Expand Down Expand Up @@ -174,7 +174,7 @@ class ResourceConfig(ru.TypedDict):
PYTHON_INTERPRETER : '' ,
LAUNCH_METHODS : dict() ,
LFS_PATH_PER_NODE : '' ,
LFS_SIZE_PER_NODE : '' ,
LFS_SIZE_PER_NODE : 0 ,
TASK_TMP : '' ,
MEM_PER_NODE : 0 ,
CORES_PER_NODE : 0 ,
Expand Down

0 comments on commit 4271319

Please sign in to comment.