com.auth0.jwk.SigningKeyNotFoundException: JWT Token keyID doesn't match the configured keyID. #18573
-
when I configure the snowflake connection on UI, got this alert: test-connection-Snowflake-RGTZzAgQ Failed to trigger workflow due to airflow API returned Internal Server Error and response {"error": "Error running automation workflow due to [An exception with message [com.auth0.jwk.SigningKeyNotFoundException: JWT Token keyID doesn't match the configured keyID. This usually happens if you didn't configure proper publicKeyUrls under authentication configuration.] was thrown while processing request.] "} any one have insight? much appreciate! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The error you're encountering, "JWT Token keyID doesn't match the configured keyID," indicates a mismatch between the keyID in your JWT token and the one configured in OpenMetadata. This typically happens when the public key URLs are not properly configured. Here are steps to resolve this issue:
|
Beta Was this translation helpful? Give feedback.
The error you're encountering, "JWT Token keyID doesn't match the configured keyID," indicates a mismatch between the keyID in your JWT token and the one configured in OpenMetadata. This typically happens when the public key URLs are not properly configured. Here are steps to resolve this issue:
Verify Key ID Consistency: Ensure that the keyID in your JWT token configuration matches the keyID used when generating the token. The keyID should be consistent across the configuration and the token generation process.
Update Public Key URLs: Double-check the public key URLs in your OpenMetadata configuration. Ensure that they are correctly specified and accessible. The URLs should point to …