We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59023ca commit 036052dCopy full SHA for 036052d
src/scitokens_internal.cpp
@@ -613,6 +613,13 @@ SciToken::deserialize_continue(std::unique_ptr<SciTokenAsyncStatus> status) {
613
} else {
614
status->m_status = status->m_validator->verify_async_continue(
615
std::move(status->m_status));
616
+ if(status->m_status->m_done) {
617
+ // Set all the claims
618
+ m_claims = m_decoded->get_payload_claims();
619
+
620
+ // Copy over the profile
621
+ m_profile = status->m_validator->get_profile();
622
+ }
623
}
624
625
return std::move(status);
0 commit comments