Skip to content

Commit

Permalink
Merge pull request #5683 from robbarnsley/patch-5682-fix_getting_oidc…
Browse files Browse the repository at this point in the history
…_account_from_config_in_reaper

Deletion: fixed oidc_account getting retrieved as bool #5682
  • Loading branch information
bari12 committed Jul 1, 2022
2 parents 545b8b6 + 74e4fa7 commit 2876a91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/rucio/daemons/reaper/reaper.py
Expand Up @@ -407,7 +407,7 @@ def reaper(rses, include_rses, exclude_rses, vos=None, chunk_size=100, once=Fals
"""

executable = 'reaper'
oidc_account = config_get_bool('reaper', 'oidc_account', False, '')
oidc_account = config_get('reaper', 'oidc_account', False, 'root')
oidc_scope = config_get('reaper', 'oidc_scope', False, 'delete')
oidc_audience = config_get('reaper', 'oidc_audience', False, 'rse')

Expand Down

0 comments on commit 2876a91

Please sign in to comment.