You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2023/02/28 18:00:22 UTC

[camel] branch main updated: Regen for commit c8d36cb1ddb93331cbecb0efa10586737f1d72c6

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new d7f2d21364d Regen for commit c8d36cb1ddb93331cbecb0efa10586737f1d72c6
d7f2d21364d is described below

commit d7f2d21364d502b63234a4991daad5922ccf8514
Author: orpiske <or...@users.noreply.github.com>
AuthorDate: Tue Feb 28 17:58:02 2023 +0000

    Regen for commit c8d36cb1ddb93331cbecb0efa10586737f1d72c6
    
    Signed-off-by: GitHub <no...@github.com>
---
 .../src/main/java/org/apache/camel/support/cache/ServicePool.java | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/core/camel-support/src/main/java/org/apache/camel/support/cache/ServicePool.java b/core/camel-support/src/main/java/org/apache/camel/support/cache/ServicePool.java
index 6017d1cbb97..b3eaa82736d 100644
--- a/core/camel-support/src/main/java/org/apache/camel/support/cache/ServicePool.java
+++ b/core/camel-support/src/main/java/org/apache/camel/support/cache/ServicePool.java
@@ -132,10 +132,10 @@ abstract class ServicePool<S extends Service> extends ServiceSupport implements
 
     private void waitForService(StatefulService service) {
         BlockingTask task = Tasks.foregroundTask().withBudget(Budgets.iterationTimeBudget()
-                        .withMaxIterations(IterationBoundedBudget.UNLIMITED_ITERATIONS)
-                        .withMaxDuration(Duration.ofMillis(30000))
-                        .withInterval(Duration.ofMillis(5))
-                        .build())
+                .withMaxIterations(IterationBoundedBudget.UNLIMITED_ITERATIONS)
+                .withMaxDuration(Duration.ofMillis(30000))
+                .withInterval(Duration.ofMillis(5))
+                .build())
                 .build();
 
         if (!task.run(service::isStarting)) {