Reputation: 39
Precondition:
Actual:
My question is why azure does not return newly updated data on step 2 and how to bypass and immediately get the newly data after updating from azure portal.
Upvotes: 1
Views: 1155
Reputation: 12434
Azure AD is a large behemoth of a system. There are multiple data centers around the world, each with copies of the data; and in order to ensure that we give you the absolute best performance we may route different calls through different sources to different data centers.
My guess is that because you are using one tool to do the update, and another tool to do the read, you are seeing propagation delay between the actual source of authority for those two systems at the time of the call.
If you made the update and read call with using the same service, I believe you would not see this problem.
Upvotes: 0