Skip to content

Commit cd9f91d

Browse files
committed
give "pam_password" and "pam" scheme strings same code path for legacy auth.
1 parent a35d266 commit cd9f91d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

irods/connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def __init__(self, pool, account):
119119
elif scheme == GSI_AUTH_SCHEME:
120120
self.client_ctx = None
121121
self._login_gsi()
122-
elif scheme == PAM_AUTH_SCHEME:
122+
elif scheme in PAM_AUTH_SCHEMES:
123123
self._login_pam()
124124
else:
125125
auth_type = None

0 commit comments

Comments
 (0)