Skip to content

Commit

Permalink
fixed order of interceptors
Browse files Browse the repository at this point in the history
Signed-off-by: Calum Murray <cmurray@redhat.com>
  • Loading branch information
Cali0707 authored and knative-prow-robot committed Jan 9, 2024
1 parent 5c21ac5 commit 542437c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public static void start(
consumerConfig.put(ConsumerConfig.VALUE_DESERIALIZER_CLASS_CONFIG, CloudEventDeserializer.class.getName());
consumerConfig.put(
ConsumerConfig.INTERCEPTOR_CLASSES_CONFIG,
InvalidCloudEventInterceptor.class.getName() + "," + NullCloudEventInterceptor.class.getName());
NullCloudEventInterceptor.class.getName() + "," + InvalidCloudEventInterceptor.class.getName());

// Read WebClient config
JsonObject webClientConfig = Configurations.readPropertiesAsJsonSync(env.getWebClientConfigFilePath());
Expand Down

0 comments on commit 542437c

Please sign in to comment.