Re: [VOTE] Release Apache Camel Kamelets 3.20.4

2023-05-17 Thread Jean-Baptiste Onofré
+1 (binding) Regards JB On Tue, May 16, 2023 at 12:15 PM Andrea Cosentino wrote: > > Hello all: > > This is a vote for releasing camel-kamelets 3.20.4 > > Kamelets release files: > https://dist.apache.org/repos/dist/dev/camel/camel-kamelets/3.20.4 > Kamelets staging repository: >

Re: [VOTE] Release Apache Camel Kamelets 3.20.4

2023-05-17 Thread Andrea Cosentino
Gently reminder. Please vote. Il mar 16 mag 2023, 12:33 Babak Vahdat ha scritto: > +1 (binding) > > Thanks Andrea! > > -- > Babak > > > On 16 May 2023, at 12:15, Andrea Cosentino wrote: > > > > Hello all: > > > > This is a vote for releasing camel-kamelets 3.20.4 > > > > Kamelets release

Re: Camel Main: RoutesIncludePattern doesn't seem to respect asterisks as a directory placeholder

2023-05-17 Thread Chirag
in a camel app, I have used property files to provide some of these params in place of passing them thru the code. You may want to explore that. ચિરાગ/चिराग/Chirag -- Sent from My Gmail Account On Wed, May 17, 2023 at 4:59 PM Fyodor Kravchenko wrote: > >

Re: Camel Main: RoutesIncludePattern doesn't seem to respect asterisks as a directory placeholder

2023-05-17 Thread Fyodor Kravchenko
Hi, I'm integrating Camel into my application, or better say, application platform, that may run different arbitrary Camel routes for integration, and I'd like to provide an ability for a developer who makes applications for this platform to edit the routes during the development. I'm

Re: Camel Main: RoutesIncludePattern doesn't seem to respect asterisks as a directory placeholder

2023-05-17 Thread Claus Ibsen
Hi What is your goal with this? The reload stuff is for development and not a production app server to "redeploy apps" or any sort of that. The intention is that you work on a single application. The reload is using Java APIs for "change file events" and this does not support an ANT style way

Re: Camel Main: RoutesIncludePattern doesn't seem to respect asterisks as a directory placeholder

2023-05-17 Thread Fyodor Kravchenko
I'm sorry please disregard my previous ramblings, moving the "deploy" directory to the working directory of the java app did the "include" trick. It worked without the "file:" prefix because it was looking into the "target" directry which was the classpath.. My fault. However, the additional

Re: Camel Main: RoutesIncludePattern doesn't seem to respect asterisks as a directory placeholder

2023-05-17 Thread Fyodor Kravchenko
Hi, thanks but this main.configure().withRoutesIncludePattern("file:deploy/customer/PRIVATE/EXCHANGE/*.yaml"); doesn't work saying "java.nio.file.NoSuchFileException: deploy/customer/PRIVATE/EXCHANGE" Like I've said previously, without the double asterisks, it does work _without_ the

Re: Camel Main: RoutesIncludePattern doesn't seem to respect asterisks as a directory placeholder

2023-05-17 Thread Claus Ibsen
Hi Okay for file system, you should favour prefixing with file: main.configure().withRoutesIncludePattern("file:deploy/customer/PRIVATE/EXCHANGE/*.yaml"); On Wed, May 17, 2023 at 3:53 PM Fyodor Kravchenko wrote: > Hi, > > I'm trying to load the routes from the file system directly, it's

Re: Camel Main: RoutesIncludePattern doesn't seem to respect asterisks as a directory placeholder

2023-05-17 Thread Fyodor Kravchenko
Hi, I'm trying to load the routes from the file system directly, it's Camel 3.20.4, and it's java 19 from the GraalVM distribution running on Ubuntu 22.04. The fact it sees the file when no wildcard is present tells me that I'm missing something in the wildcards and the docs. Thank you!