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 identity service, we have a function verify that as it says, verifies the user profile. So the way identity service works is, you have to put your profile service Url in mysite and generate a chaincode from there and put it in identity service then you press verify button, mysite call the nodeJS backend where we set the profileStatus to PENDING, and that backend calls the identity service verify to verify the profile service without waiting for its response. But sometimes that verification call doesn't happen or the identity service is in the deployment phase, and the status stays PENDING.
For that, we want to make a function that is scheduled every week which checks for pending profiles and makes a verification call for them.
The text was updated successfully, but these errors were encountered:
In identity service, we have a function
verify
that as it says, verifies the user profile. So the way identity service works is, you have to put your profile service Url in mysite and generate a chaincode from there and put it in identity service then you press verify button, mysite call the nodeJS backend where we set the profileStatus toPENDING
, and that backend calls the identity serviceverify
to verify the profile service without waiting for its response. But sometimes that verification call doesn't happen or the identity service is in the deployment phase, and the status staysPENDING
.For that, we want to make a function that is scheduled every week which checks for pending profiles and makes a verification call for them.
The text was updated successfully, but these errors were encountered: