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
in our adobe auth override, we're mistakenly treating the expires_in value we get from the adobe jwt exchange API response as if it were a seconds duration. in reality, it's a milliseconds duration, so we should treat it accordingly.
Steps to Reproduce
run a DSR that uses the adobe connector. it will retrieve and store a temporary auth key in our app db.
with same auth config (i.e. don't reset your db), run another DSR that uses the same adobe connector, more than 24 hours after step 1.
you should hit an auth error (401) coming from adobe in your DSR execution. the token has expired, but our app will think it's still valid (since it thought it was expiring in 999 days, not .99 😄 )
Expected behavior
we should be refreshing and getting a new token when the existing token actually expires, i.e. what seems to be .99 days after it was created. in any case, it's expressed in ms, so as long as we handle that properly, we will be refreshing when we need to!
Screenshots
If applicable, add screenshots to help explain your problem.
Environment
Version:
OS:
Python Version:
Docker Version:
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
Bug Description
in our adobe auth override, we're mistakenly treating the
expires_in
value we get from the adobe jwt exchange API response as if it were a seconds duration. in reality, it's a milliseconds duration, so we should treat it accordingly.Steps to Reproduce
Expected behavior
we should be refreshing and getting a new token when the existing token actually expires, i.e. what seems to be .99 days after it was created. in any case, it's expressed in ms, so as long as we handle that properly, we will be refreshing when we need to!
Screenshots
If applicable, add screenshots to help explain your problem.
Environment
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: