You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dear all,
In order to prevent an error when F7T_REALM_RSA_TYPE is 'NoneType', I advise to modify: realm_pubkey_type = os.environ.get("F7T_REALM_RSA_TYPE").strip('\'"')
at line 67 of cscs_api_common.py to realm_pubkey_type = os.environ.get("F7T_REALM_RSA_TYPE", '',).strip('\'"')
The text was updated successfully, but these errors were encountered:
Thanks for opening this issue. From version v1.16.1 the variable F7T_REALM_RSA_TYPE will be changed to F7T_AUTH_ALGORITHMS and will support multiple algorithms for decoding JWT tokens.
Dear all,
In order to prevent an error when F7T_REALM_RSA_TYPE is 'NoneType', I advise to modify:
realm_pubkey_type = os.environ.get("F7T_REALM_RSA_TYPE").strip('\'"')
at line 67 of cscs_api_common.py to
realm_pubkey_type = os.environ.get("F7T_REALM_RSA_TYPE", '',).strip('\'"')
The text was updated successfully, but these errors were encountered: