remove deprecated --ca option

Fixes: https://pagure.io/koji/issue/2192
This commit is contained in:
Tomas Kopecek 2020-10-06 13:48:05 +02:00
parent 7ba3e93e20
commit 0f56d39487
7 changed files with 3 additions and 20 deletions

View file

@ -1915,7 +1915,6 @@ def read_config(profile_name, user_config=None):
'principal': None,
'keytab': None,
'cert': None,
'ca': '', # FIXME: remove in next major release
'serverca': None,
'no_ssl_verify': False,
'authtype': None,
@ -1993,9 +1992,6 @@ def read_config(profile_name, user_config=None):
else:
result[name] = os.path.expanduser(result[name])
if result.get('ca'):
util.deprecated("ca option in config file is deprecated and will be removed in 1.24")
return result