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
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ public static KurrentDBFixtureOptions DefaultOptions() {
["EVENTSTORE_RUN_PROJECTIONS"] = "All",
["EVENTSTORE_CHUNK_SIZE"] = (1024 * 1024 * 1024).ToString(),
["EVENTSTORE_MAX_APPEND_SIZE"] = 100.Kilobytes().Bytes.ToString(CultureInfo.InvariantCulture),
["EVENTSTORE_MAX_APPEND_EVENT_SIZE"] = 100.Kilobytes().Bytes.ToString(CultureInfo.InvariantCulture),
["EVENTSTORE_ADVERTISE_NODE_PORT_TO_CLIENT_AS"] = $"{NetworkPortProvider.DefaultEsdbPort}"
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ public static KurrentDBFixtureOptions DefaultOptions() {
["EVENTSTORE_DISABLE_LOG_FILE"] = "true",
["EVENTSTORE_CHUNK_SIZE"] = (1024 * 1024 * 1024).ToString(),
["EVENTSTORE_MAX_APPEND_SIZE"] = 100.Kilobytes().Bytes.ToString(CultureInfo.InvariantCulture),
["EVENTSTORE_MAX_APPEND_EVENT_SIZE"] = 100.Kilobytes().Bytes.ToString(CultureInfo.InvariantCulture),
["EVENTSTORE_ADVERTISE_HTTP_PORT_TO_CLIENT_AS"] = $"{NetworkPortProvider.DefaultEsdbPort}"
};

Expand Down
1 change: 1 addition & 0 deletions test/KurrentDB.Client.Tests.Common/shared.env
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ EVENTSTORE_STREAM_EXISTENCE_FILTER_SIZE=10000
EVENTSTORE_DB_LOG_FORMAT
EVENTSTORE_LOG_LEVEL
EVENTSTORE_MAX_APPEND_SIZE
EVENTSTORE_MAX_APPEND_EVENT_SIZE
EVENTSTORE_MEM_DB
EVENTSTORE_RUN_PROJECTIONS
EVENTSTORE_START_STANDARD_PROJECTIONS