Skip to content

Commit

Permalink
ArC: clarify the description of quarkus.arc.context-propagation.enabled
Browse files Browse the repository at this point in the history
- fixes #34123
  • Loading branch information
mkouba committed Dec 14, 2023
1 parent 5290dc7 commit b2e5cce
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,14 @@
public class ArcContextPropagationConfig {

/**
* If set to true and SmallRye Context Propagation extension is present then enable the context propagation for CDI
* If set to true and the SmallRye Context Propagation extension is present then the CDI contexts will be propagated by
* means of the MicroProfile Context Propagation API. Specifically, a
* {@link org.eclipse.microprofile.context.spi.ThreadContextProvider} implementation is registered.
*
* On the other hand, if set to false then the MicroProfile Context Propagation API will never be used to propagate the CDI
* contexts.
*
* Note that the CDI contexts may be propagated in a different way though. For example with the Vertx duplicated context.
*/
@ConfigItem(defaultValue = "true")
public boolean enabled;
Expand Down

0 comments on commit b2e5cce

Please sign in to comment.