Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ internal object SdkValidation {
EMPTY_ENDPOINT(true, "Endpoint must not be empty"),
INVALID_DEVICE_ID(false, "Invalid previous device UUID format"),
INVALID_INSTALLATION_ID(false, "Invalid UUID format of previous installationId"),
INVALID_OPERATIONS_DOMAIN(false, "The operationsDomain is not valid, it will be ignored");
INVALID_OPERATIONS_DOMAIN(true, "The operationsDomain is not valid");
Copy link

Copilot AI Apr 28, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

INVALID_OPERATIONS_DOMAIN is now marked critical=true, which changes runtime behavior: Mindbox.validateConfiguration() will throw InitializeMindboxException instead of logging and ignoring the invalid operationsDomain. Please add/adjust tests to cover this new contract (e.g., invalid operationsDomain causes initialization to fail, and valid values still pass).

Copilot uses AI. Check for mistakes.

override fun toString() = "$name(critical=$critical, message=$message)"
}
Expand Down
Loading