Skip to content

Commit

Permalink
fix redundancy
Browse files Browse the repository at this point in the history
  • Loading branch information
Wescoeur committed Jun 27, 2023
1 parent b1d84c9 commit fcd76db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/storage/linstor/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def pool_with_linstor(hostA2, lvm_disk, pool_with_saved_yum_state):
def linstor_sr(pool_with_linstor):
sr = pool_with_linstor.master.sr_create('linstor', 'LINSTOR-SR-test', {
'group-name': STORAGE_POOL_NAME,
'redundancy': str(max(len(pool_with_linstor.hosts), 3)),
'redundancy': str(min(len(pool_with_linstor.hosts), 3)),
'provisioning': 'thin'
}, shared=True)
yield sr
Expand Down

0 comments on commit fcd76db

Please sign in to comment.