Skip to content
Snippets Groups Projects
Commit e5273ac6 authored by Matt Wise's avatar Matt Wise
Browse files

allow 10 retries for check if partition was created fully

parent 199c54f3
No related branches found
No related tags found
1 merge request!11Feat/aws impl
Pipeline #10088 passed
......@@ -60,7 +60,7 @@ public class PartitionServiceImpl implements IPartitionService {
* The performance hit is acceptable because partitions are only created as an early operation and shouldn't affect
* the performance of runtime workflows
*/
int retryCount = 5;
int retryCount = 10;
boolean partitionReady = false;
while (!partitionReady && retryCount > 0) {
retryCount--;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment