Skip to content

Commit 07238a9

Browse files
committed
Slurm 20 requires the DB port (SOFTWARE-4446)
1 parent 5ab91d5 commit 07238a9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

osgtest/tests/test_290_slurm.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
StorageLoc={name}
1919
StorageUser={user}
2020
StoragePass={password}
21+
StoragePort={port}
2122
"""
2223

2324
SLURM_CONFIG = """AccountingStorageHost=localhost
@@ -106,7 +107,8 @@ def test_02_start_slurmdbd(self):
106107
files.write(core.config['slurmdbd.config'],
107108
SLURMDBD_CONFIG.format(name=core.config['slurmdbd.name'],
108109
user=core.config['slurmdbd.user'].split('\'')[1],
109-
password=core.options.password,),
110+
password=core.options.password,
111+
port=mysql.PORT),
110112
owner='slurm',
111113
chmod=0o644)
112114
service.check_start('slurmdbd')

0 commit comments

Comments
 (0)