Skip to content

Commit

Permalink
Merge pull request #19243 from Sgitario/replace_configproperty
Browse files Browse the repository at this point in the history
Reactive Kafka: replace @ConfigProperty by @configitem
  • Loading branch information
geoand authored Aug 5, 2021
2 parents 7820ff6 + 74ee51d commit 2c73415
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package io.quarkus.smallrye.reactivemessaging.kafka;

import org.eclipse.microprofile.config.inject.ConfigProperty;

import io.quarkus.runtime.annotations.ConfigItem;
import io.quarkus.runtime.annotations.ConfigRoot;

@ConfigRoot(name = "reactive-messaging.kafka")
Expand All @@ -13,7 +12,7 @@ public class ReactiveMessagingKafkaConfig {
* While this setting is highly recommended in production, in dev and test modes, it's disabled by default.
* This setting allows to re-enable it.
*/
@ConfigProperty(defaultValue = "false")
@ConfigItem(defaultValue = "false")
public boolean enableGracefulShutdownInDevAndTestMode;

}

0 comments on commit 2c73415

Please sign in to comment.