Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@
- In certain cases the SDK was not able to provide a transaction name automatically and thus did not finish the transaction for the request.
- We now first try `SpringMvcTransactionNameProvider` which would provide the route as transaction name.
- If that does not return anything, we try `SpringServletTransactionNameProvider` next, which returns the URL of the request.
- Remove "not yet implemented" from `Sentry.flush` comment ([#4305](https://github.com/getsentry/sentry-java/pull/4305))

### Behavioral Changes

Expand Down
2 changes: 1 addition & 1 deletion sentry/src/main/java/io/sentry/IScopes.java
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ default void configureScope(@NotNull ScopeCallback callback) {
boolean isHealthy();

/**
* Flushes events queued up, but keeps the scopes enabled. Not implemented yet.
* Flushes events queued up, but keeps the scopes enabled.
*
* @param timeoutMillis time in milliseconds
*/
Expand Down
2 changes: 1 addition & 1 deletion sentry/src/main/java/io/sentry/ISentryClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public interface ISentryClient {
void close(boolean isRestarting);

/**
* Flushes events queued up, but keeps the client enabled. Not implemented yet.
* Flushes events queued up, but keeps the client enabled.
*
* @param timeoutMillis time in milliseconds
*/
Expand Down
2 changes: 1 addition & 1 deletion sentry/src/main/java/io/sentry/Sentry.java
Original file line number Diff line number Diff line change
Expand Up @@ -1030,7 +1030,7 @@ public static boolean isHealthy() {
}

/**
* Flushes events queued up to the current Scopes. Not implemented yet.
* Flushes events queued up to the current Scopes.
*
* @param timeoutMillis time in milliseconds
*/
Expand Down
2 changes: 1 addition & 1 deletion sentry/src/main/java/io/sentry/transport/ITransport.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ default boolean isHealthy() {
}

/**
* Flushes events queued up, but keeps the client enabled. Not implemented yet.
* Flushes events queued up, but keeps the client enabled.
*
* @param timeoutMillis time in milliseconds
*/
Expand Down
Loading