Skip to content

Commit

Permalink
Merge branch 'develop' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
dreambeyondorange authored Sep 22, 2023
2 parents 47140cd + 47c6354 commit 2e361ef
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,13 @@ This file is used to list changes made in each version of the AWS ParallelCluste
- Upgrade Slurm to 23.02.5 (from 23.02.4).
- Upgrade Pmix to 4.2.6 (from 3.2.3).
- Upgrade libjwt to 1.15.3 (from 1.12.0).
- Upgrade EFA installer to `1.26.1`, fixing RDMA writedata issue in P5.
- Efa-driver: `efa-2.5.0-1`
- Efa-config: `efa-config-1.15-1`
- Efa-profile: `efa-profile-1.5-1`
- Libfabric-aws: `libfabric-aws-1.18.2-1`
- Rdma-core: `rdma-core-46.0-1`
- Open MPI: `openmpi40-aws-4.1.5-4`

3.7.0
------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,13 @@ if [ -n "${SECRET_ARN}" ]; then
exit 1
fi

# Check munge key size
key_size=$(echo "${decoded_key}" | wc -c)
if [ $key_size -lt 32 ] || [ $key_size -gt 1024 ]; then
echo "Fetched munge key size is out of valid range [256-8192 bits]."
exit 1
fi

echo "${decoded_key}" > ${MUNGE_KEY_FILE}

# Set ownership on the key
Expand Down

0 comments on commit 2e361ef

Please sign in to comment.