Skip to content

Commit 7d6b2b0

Browse files
Merge branch 'develop' into develop
2 parents 29b22a4 + fe9fdae commit 7d6b2b0

File tree

3 files changed

+3
-11
lines changed

3 files changed

+3
-11
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ CHANGELOG
1818
- Add support for multiple instance types in the same Compute Resource.
1919
- Add support for a Name field in PlacementGroup as the preferred naming method.
2020
- Add support for Networking.PlacementGroup in the SlurmQueues.ComputeResources section
21+
- Upgrade Slurm to version 22.05.3.
2122

2223
**BUG FIXES**
2324
- Fix validation of parameter `SharedStorage/EfsSettings`: now validation fails when `FileSystemId` is specified

tests/integration-tests/tests/networking/test_cluster_networking.py

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -136,16 +136,7 @@ def test_cluster_in_no_internet_subnet(
136136
_check_hostname(remote_command_executor)
137137
_run_prolog_epilog_jobs(remote_command_executor, slurm_commands)
138138
_run_mpi_jobs(mpi_variants, remote_command_executor, test_datadir, slurm_commands, cluster, region)
139-
expected_log_streams = {
140-
"HeadNode": {"cfn-init", "cloud-init", "clustermgtd", "chef-client", "slurmctld", "supervisord"},
141-
"Compute": {
142-
"syslog" if os.startswith("ubuntu") else "system-messages",
143-
"computemgtd",
144-
"supervisord",
145-
"slurm_prolog_epilog",
146-
},
147-
}
148-
utils.check_pcluster_list_cluster_log_streams(cluster, os, expected_log_streams)
139+
utils.check_pcluster_list_cluster_log_streams(cluster, os)
149140
assert_no_errors_in_logs(remote_command_executor, scheduler)
150141
logging.info("Checking compute node is scaled down after scaledown idle time")
151142
wait_for_num_instances_in_cluster(cluster.cfn_name, region, 1)

tests/integration-tests/tests/schedulers/test_slurm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1231,7 +1231,7 @@ def _gpu_resource_check(slurm_commands, partition, instance_type, instance_type_
12311231
def _test_slurm_version(remote_command_executor):
12321232
logging.info("Testing Slurm Version")
12331233
version = remote_command_executor.run_remote_command("sinfo -V").stdout
1234-
assert_that(version).is_equal_to("slurm 21.08.8-2")
1234+
assert_that(version).is_equal_to("slurm 22.05.3")
12351235

12361236

12371237
def _test_job_dependencies(slurm_commands, region, stack_name, scaledown_idletime):

0 commit comments

Comments
 (0)