Skip to content

Commit 144bbd1

Browse files
committed
add the md5 fingerprint from file support that somehow slipped during PR171
git-svn-id: svn+ssh://svn.code.sf.net/p/migrid/code/trunk@6189 b75ad72c-e7d7-11dd-a971-7dbc132099af
1 parent d84c62c commit 144bbd1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mig/shared/configuration.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1131,7 +1131,8 @@ def reload_config(self, verbose, skip_log=False, disable_auth_log=False,
11311131
self.user_sftp_key_pub = config.get('GLOBAL',
11321132
'user_sftp_key_pub')
11331133
if config.has_option('GLOBAL', 'user_sftp_key_md5'):
1134-
fingerprint = config.get('GLOBAL', 'user_sftp_key_md5')
1134+
fingerprint = expand_external_sources(
1135+
logger, config.get('GLOBAL', 'user_sftp_key_md5'))
11351136
self.user_sftp_key_md5 = fingerprint
11361137
if config.has_option('GLOBAL', 'user_sftp_key_sha256'):
11371138
fingerprint = expand_external_sources(

0 commit comments

Comments
 (0)