Skip to content

Commit

Permalink
fixed default deadline timeout to 30s instead of 300s (#3322)
Browse files Browse the repository at this point in the history
* fixed default deadline timeout to 30s instead of 300s
  • Loading branch information
stefanosiano committed Apr 4, 2024
1 parent a1f394c commit ab55b2c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@

- Add support for Spring Rest Client ([#3199](https://github.com/getsentry/sentry-java/pull/3199))

### Fixes

- Fixed default deadline timeout to 30s instead of 300s ([#3322](https://github.com/getsentry/sentry-java/pull/3322))

## 7.6.0

### Features
Expand Down
2 changes: 1 addition & 1 deletion sentry/src/main/java/io/sentry/TransactionOptions.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/** Sentry Transaction options */
public final class TransactionOptions extends SpanOptions {

@ApiStatus.Internal public static final long DEFAULT_DEADLINE_TIMEOUT_AUTO_TRANSACTION = 300000;
@ApiStatus.Internal public static final long DEFAULT_DEADLINE_TIMEOUT_AUTO_TRANSACTION = 30000;

/**
* Arbitrary data used in {@link SamplingContext} to determine if transaction is going to be
Expand Down

0 comments on commit ab55b2c

Please sign in to comment.