mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Merge pull request #676 from ruwany/cloud-3.1.0
Adding logic to acknowledge 404 response when tiers not available
This commit is contained in:
commit
6749672521
@ -76,8 +76,9 @@ public class APIManagementProviderServiceImpl implements APIManagementProviderSe
|
||||
String tenantDomain = PrivilegedCarbonContext.getThreadLocalCarbonContext()
|
||||
.getTenantDomain();
|
||||
String tiersLoadedForTenant = tiersMap.get(tenantDomain);
|
||||
|
||||
if (tiersLoadedForTenant == null) {
|
||||
int tierStatus = 0;
|
||||
boolean tierLoaded = false;
|
||||
int attempts = 0;
|
||||
do {
|
||||
try {
|
||||
@ -85,9 +86,8 @@ public class APIManagementProviderServiceImpl implements APIManagementProviderSe
|
||||
.tiersTierLevelTierNameGet(ApiApplicationConstants.DEFAULT_TIER, APP_TIER_TYPE,
|
||||
tenantDomain, CONTENT_TYPE, null, null);
|
||||
tiersMap.put(tenantDomain, "exist");
|
||||
tierStatus = 200;
|
||||
tierLoaded = true;
|
||||
} catch (FeignException e) {
|
||||
tierStatus = e.status();
|
||||
attempts++;
|
||||
try {
|
||||
Thread.sleep(500);
|
||||
@ -95,7 +95,7 @@ public class APIManagementProviderServiceImpl implements APIManagementProviderSe
|
||||
log.warn("Interrupted the waiting for tier availability.");
|
||||
}
|
||||
}
|
||||
} while (tierStatus == 500 && attempts < MAX_ATTEMPTS);
|
||||
} while ((!tierLoaded) && attempts < MAX_ATTEMPTS);
|
||||
}
|
||||
|
||||
ApplicationList applicationList = storeClient.getApplications()
|
||||
|
||||
Loading…
Reference in New Issue
Block a user