Skip to content

Commit

Permalink
merge from devel
Browse files Browse the repository at this point in the history
  • Loading branch information
andre-merzky committed Jan 17, 2024
2 parents 781fdb5 + c9c9339 commit cf00894
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ For a list of open issues and known problems, see:

This is the latest release - if uncertain, use this release.

--------------------------------------------------------------------------------
### 1.46.1 Hotfix-Release 2024-01-17

- fix type for `LFS_SIZE_PER_NODE`


--------------------------------------------------------------------------------
### 1.46.0 Release 2024-01-11

Expand Down
4 changes: 4 additions & 0 deletions VERSION
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
<<<<<<< HEAD
1.47.0
=======
1.46.1
>>>>>>> master
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 cf00894

Please sign in to comment.