You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by lb...@apache.org on 2019/08/09 09:32:14 UTC

[camel-quarkus] branch master updated: chore: add a note about removing custom resolveSpoolDirectory

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

lburgazzoli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


The following commit(s) were added to refs/heads/master by this push:
     new daaf4d4  chore: add a note about removing custom resolveSpoolDirectory
daaf4d4 is described below

commit daaf4d455aace992d5ef5cd727c9297c2686d4dd
Author: lburgazzoli <lb...@gmail.com>
AuthorDate: Fri Aug 9 11:32:02 2019 +0200

    chore: add a note about removing custom resolveSpoolDirectory
---
 .../apache/camel/quarkus/core/runtime/support/FastCamelContext.java    | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/extensions/core/runtime/src/main/java/org/apache/camel/quarkus/core/runtime/support/FastCamelContext.java b/extensions/core/runtime/src/main/java/org/apache/camel/quarkus/core/runtime/support/FastCamelContext.java
index 6ccbdad..2ed5feb 100644
--- a/extensions/core/runtime/src/main/java/org/apache/camel/quarkus/core/runtime/support/FastCamelContext.java
+++ b/extensions/core/runtime/src/main/java/org/apache/camel/quarkus/core/runtime/support/FastCamelContext.java
@@ -317,6 +317,9 @@ public class FastCamelContext extends AbstractCamelContext {
     @Override
     protected StreamCachingStrategy createStreamCachingStrategy() {
         return new DefaultStreamCachingStrategy() {
+            // TODO: this has been fixed on camel master by Claus with commit
+            //       https://github.com/apache/camel/commit/087b5a7db18c8070e37b119cb9db0513e3dd0865
+            //       we should remove this overloaded method once migration to Camel 3.0.0-M5 is
             @Override
             protected String resolveSpoolDirectory(String path) {
                 StringHelper.notEmpty(path, "path");