Skip to content

Commit ed0e274

Browse files
committed
Fix the default value of the strict mode configuration property
1 parent 6f49edf commit ed0e274

File tree

1 file changed

+1
-1
lines changed
  • smallrye-reactive-messaging-provider/src/main/java/io/smallrye/reactive/messaging/extension

1 file changed

+1
-1
lines changed

smallrye-reactive-messaging-provider/src/main/java/io/smallrye/reactive/messaging/extension/MediatorManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public class MediatorManager {
5959
Instance<ChannelRegistar> registars;
6060

6161
@Inject
62-
@ConfigProperty(name = STRICT_MODE_PROPERTY, defaultValue = "BAR")
62+
@ConfigProperty(name = STRICT_MODE_PROPERTY, defaultValue = "false")
6363
boolean strictMode;
6464

6565
public <T> void analyze(AnnotatedType<T> annotatedType, Bean<T> bean) {

0 commit comments

Comments
 (0)