Skip to content

Commit

Permalink
File specific issues for TODOs where necessary #1285
Browse files Browse the repository at this point in the history
  • Loading branch information
ppalaga committed Oct 9, 2020
1 parent 4bfdc7b commit 8f2172f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ CamelTypeConverterRegistryBuildItem typeConverterRegistry(
//
// TODO: we could add a filter to discard AnnotationTypeConverterLoader but maybe we should introduce
// a marker interface like StaticTypeConverterLoader for loaders that do not require to perform
// any discovery at runtime.
// any discovery at runtime; see https://github.com/apache/camel-quarkus/issues/1896
//
for (ApplicationArchive archive : applicationArchives.getAllApplicationArchives()) {
for (Path root : archive.getRootDirs()) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ void transactedPolicy(
}
}

@BuildStep //TODO remove this BuildStep when https://github.com/quarkusio/quarkus/issues/10180 gets resolved
@BuildStep //TODO workaround for https://github.com/apache/camel-quarkus/issues/1895
void registerNarayanaReflectiveClass(BuildProducer<ReflectiveClassBuildItem> reflectiveClass) {
reflectiveClass.produce(
new ReflectiveClassBuildItem(false, false, SocketProcessId.class.getName()));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public RuntimeValue<?> createVertxHttpComponent(RuntimeValue<Vertx> vertx) {
return new RuntimeValue<>(component);
}

// TODO: Remove when https://issues.apache.org/jira/browse/CAMEL-15495 is resolved
// TODO: Remove when https://issues.apache.org/jira/browse/CAMEL-15495 is resolved see https://github.com/apache/camel-quarkus/issues/1675
static class QuarkusVertxHttpBinding extends DefaultVertxHttpBinding {
@Override
public void populateRequestHeaders(Exchange exchange, HttpRequest<Buffer> request, HeaderFilterStrategy strategy) {
Expand Down

0 comments on commit 8f2172f

Please sign in to comment.