Skip to content

Commit 30f5b61

Browse files
authored
Merge 53b24e0 into de2136e
2 parents de2136e + 53b24e0 commit 30f5b61

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@
100100
- In certain cases the SDK was not able to provide a transaction name automatically and thus did not finish the transaction for the request.
101101
- We now first try `SpringMvcTransactionNameProvider` which would provide the route as transaction name.
102102
- If that does not return anything, we try `SpringServletTransactionNameProvider` next, which returns the URL of the request.
103+
- Remove "not yet implemented" from `Sentry.flush` comment ([#4305](https://github.com/getsentry/sentry-java/pull/4305))
103104

104105
### Behavioral Changes
105106

sentry/src/main/java/io/sentry/IScopes.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ default void configureScope(@NotNull ScopeCallback callback) {
376376
boolean isHealthy();
377377

378378
/**
379-
* Flushes events queued up, but keeps the scopes enabled. Not implemented yet.
379+
* Flushes events queued up, but keeps the scopes enabled.
380380
*
381381
* @param timeoutMillis time in milliseconds
382382
*/

sentry/src/main/java/io/sentry/ISentryClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public interface ISentryClient {
4040
void close(boolean isRestarting);
4141

4242
/**
43-
* Flushes events queued up, but keeps the client enabled. Not implemented yet.
43+
* Flushes events queued up, but keeps the client enabled.
4444
*
4545
* @param timeoutMillis time in milliseconds
4646
*/

sentry/src/main/java/io/sentry/Sentry.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1030,7 +1030,7 @@ public static boolean isHealthy() {
10301030
}
10311031

10321032
/**
1033-
* Flushes events queued up to the current Scopes. Not implemented yet.
1033+
* Flushes events queued up to the current Scopes.
10341034
*
10351035
* @param timeoutMillis time in milliseconds
10361036
*/

sentry/src/main/java/io/sentry/transport/ITransport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ default boolean isHealthy() {
2020
}
2121

2222
/**
23-
* Flushes events queued up, but keeps the client enabled. Not implemented yet.
23+
* Flushes events queued up, but keeps the client enabled.
2424
*
2525
* @param timeoutMillis time in milliseconds
2626
*/

0 commit comments

Comments
 (0)