Skip to content

Commit 164b5b2

Browse files
committed
Fix missing params
1 parent 5387cfa commit 164b5b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/ibmos2spark/osconfig.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ def _get_required_keys(cos_type, auth_method):
259259
raise ValueError("Invalid input: cos_type. cos_type is optional but if set, it should have one of the following values: classic_cos, bluemix_cos")
260260

261261
# check keys
262-
required_key_list = _get_required_keys()
262+
required_key_list = _get_required_keys(cos_type, auth_method)
263263

264264
for i in range(len(required_key_list)):
265265
key = required_key_list[i]

0 commit comments

Comments
 (0)