Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion lib/sdk/server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ ext.versions = [
"guava": "32.0.1-jre",
"jackson": "2.11.2",
"launchdarklyJavaSdkCommon": "2.3.0",
"launchdarklyJavaSdkInternal": "1.9.0",
"launchdarklyJavaSdkInternal": "1.10.0",
"launchdarklyLogging": "1.1.0",
"okhttp": "4.12.0", // specify this for the SDK build instead of relying on the transitive dependency from okhttp-eventsource
"okhttpEventsource": "4.2.0",
Expand Down
4 changes: 1 addition & 3 deletions lib/sdk/server/contract-tests/test-suppressions.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
events/custom events/single-kind anonymous context redacts all attributes
events/custom events/multi-kind with anonymous context redacts attributes appropriately
migrations/redacts anonymous context attributes

Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,9 @@ public EventProcessor build(ClientContext context) {
flushInterval.toMillis(),
false,
false,
privateAttributes);
privateAttributes,
false, // perContextSummarization: server-side SDKs summarize across contexts
true); // redactAnonymousAllEvents: server-side SDKs inline & redact custom/migration-op contexts
return new DefaultEventProcessorWrapper(context, eventsConfig);
}

Expand Down
Loading