Stefan Tataru
Stefan Tataru
The version needs to start with an integer: https://github.com/osgi/osgi/blob/6eee417af367c749a6f84a11239d94cc63f6bdcb/org.osgi.framework/src/org/osgi/framework/Version.java#L126 There are bundles in which the major version starts with a string: `wrap:mvn:com.google.apis/google-api-services-drive/${google-api-services-drive-version}` `v3-rev20240123-2.0.0` Test in which I've purposefully modified `camel-gson`:...
I see 2 options 1. Don't specify the version. 2. Rely on https://github.com/apache/felix-dev/blob/org.apache.felix.main-7.0.5/utils/src/main/java/org/apache/felix/utils/version/VersionCleaner.java to obtain the version in a valid format. For instance `org.apache.felix.utils.version.VersionCleaner.clean("v3-rev20240123-2.0.0")` returns `0.0.0.v3-rev20240123-2_0_0`. Downside: We stop relying...
I still haven't found a solution for this. Here is what I have discovered so far: - the logs causing the spam aren't coming from the Apache Drill container -...
Interestingly enough, having this in the integration test classes breaks the test ``` System.setProperty("logback.configurationFile", ".../logback-test.xml"); ```
The memory while the test is running seems fine, at least on my machine.
Hello, and thanks for sharing. I couldn’t reproduce the issue on my end. Am I missing something? Route in blueprint file: ``` Johnny Johnny 30 Car 1 true ]]> ```...
Hello @AndreVirtimo, as far as I know, we have two commands that allow us to create groups: - `jaas:group-add user myGroup1` - `jaas:group-create myGroup2` In both cases, there is no...
I just realized that `group` is also used as a "prefix flag" in `keys.properties`. I wonder if the changes need to be propagated in this login module as well: https://github.com/apache/karaf/blob/a8d990102fd5181bcb8e23ef8fe06a5782db9d0a/jaas/modules/src/main/java/org/apache/karaf/jaas/modules/publickey/PublickeyBackingEngine.java#L273...
I'll try to commit the changes for `keys.properties` this week or next. Will request a re-review once it's done. **UPDATE:** I'll need more time to test this.
I see some duplicate code in `jaas/modules/src/main/java/org/apache/karaf/jaas/modules/properties/PropertiesBackingEngine.java` and `jaas/modules/src/main/java/org/apache/karaf/jaas/modules/publickey/PublickeyBackingEngine.java`. Should we take this opportunity to refactor? Is it safe to do so? I was thinking of creating a parent class...