Skip to content

Commit

Permalink
add enableAotCompatibility flag to SentryProperties
Browse files Browse the repository at this point in the history
  • Loading branch information
lbloder committed Sep 6, 2023
1 parent 1a77ca4 commit ac9de10
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ public class SentryProperties extends SentryOptions {
/** Reactive framework (e.g. WebFlux) integration properties */
private @NotNull Reactive reactive = new Reactive();

private boolean enableAotCompatibility = false;

public boolean isUseGitCommitIdAsRelease() {
return useGitCommitIdAsRelease;
}
Expand Down Expand Up @@ -85,6 +87,14 @@ public void setReactive(@NotNull Reactive reactive) {
this.reactive = reactive;
}

public boolean isEnableAotCompatibility() {
return enableAotCompatibility;
}

public void setEnableAotCompatibility(boolean enableAotCompatibility) {
this.enableAotCompatibility = enableAotCompatibility;
}

@Open
public static class Logging {
/** Enable/Disable logging auto-configuration. */
Expand Down

0 comments on commit ac9de10

Please sign in to comment.