This commit is contained in:
Flanker32 2024-05-30 10:00:08 +08:00
Родитель 361306c808
Коммит b71071dfd3
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -287,6 +287,7 @@ public class FunctionAppDraft extends FunctionApp implements AzResource.Draft<Fu
.forObjectId(identityId)
.withBuiltInRole(BuiltInRole.STORAGE_BLOB_DATA_CONTRIBUTOR)
.withScope(scope).create();
Thread.sleep(30 * 1000);
final RoleAssignment existingRoleAssignment = getExistingRoleAssignment(identityId, scope);
if (Objects.isNull(existingRoleAssignment)) {
AzureMessager.getMessager().error(String.format(ROLE_NOT_AFFECT, BuiltInRole.STORAGE_BLOB_DATA_CONTRIBUTOR, identityId));