Skip to content

Commit

Permalink
[fix][test] Fixed too short wait in ResourceGroupRateLimiterTest (#21509
Browse files Browse the repository at this point in the history
)
  • Loading branch information
merlimat authored Nov 3, 2023
1 parent 78fc853 commit d47637f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public void createResourceGroup(String rgName, org.apache.pulsar.common.policies

public void deleteResourceGroup(String rgName) throws PulsarAdminException {
admin.resourcegroups().deleteResourceGroup(rgName);
Awaitility.await().atMost(1, TimeUnit.SECONDS)
Awaitility.await().atMost(10, TimeUnit.SECONDS)
.untilAsserted(() -> assertNull(pulsar.getResourceGroupServiceManager().resourceGroupGet(rgName)));
}

Expand Down

0 comments on commit d47637f

Please sign in to comment.