Skip to content

Commit 4172236

Browse files
[DB-1531] Set MaxAppendEventSize otherwise it is larger than MaxAppendSize whic… (#370)
* Set MaxAppendEventSize otherwise it is larger than MaxAppendSize which is now invalid * more
1 parent 5ff1a60 commit 4172236

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

test/KurrentDB.Client.Tests.Common/Fixtures/KurrentDBPermanentTestNode.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ public static KurrentDBFixtureOptions DefaultOptions() {
8181
["EVENTSTORE_RUN_PROJECTIONS"] = "All",
8282
["EVENTSTORE_CHUNK_SIZE"] = (1024 * 1024 * 1024).ToString(),
8383
["EVENTSTORE_MAX_APPEND_SIZE"] = 100.Kilobytes().Bytes.ToString(CultureInfo.InvariantCulture),
84+
["EVENTSTORE_MAX_APPEND_EVENT_SIZE"] = 100.Kilobytes().Bytes.ToString(CultureInfo.InvariantCulture),
8485
["EVENTSTORE_ADVERTISE_NODE_PORT_TO_CLIENT_AS"] = $"{NetworkPortProvider.DefaultEsdbPort}"
8586
};
8687

test/KurrentDB.Client.Tests.Common/Fixtures/KurrentDBTemporaryTestNode.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ public static KurrentDBFixtureOptions DefaultOptions() {
7979
["EVENTSTORE_DISABLE_LOG_FILE"] = "true",
8080
["EVENTSTORE_CHUNK_SIZE"] = (1024 * 1024 * 1024).ToString(),
8181
["EVENTSTORE_MAX_APPEND_SIZE"] = 100.Kilobytes().Bytes.ToString(CultureInfo.InvariantCulture),
82+
["EVENTSTORE_MAX_APPEND_EVENT_SIZE"] = 100.Kilobytes().Bytes.ToString(CultureInfo.InvariantCulture),
8283
["EVENTSTORE_ADVERTISE_HTTP_PORT_TO_CLIENT_AS"] = $"{NetworkPortProvider.DefaultEsdbPort}"
8384
};
8485

test/KurrentDB.Client.Tests.Common/shared.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ EVENTSTORE_STREAM_EXISTENCE_FILTER_SIZE=10000
1010
EVENTSTORE_DB_LOG_FORMAT
1111
EVENTSTORE_LOG_LEVEL
1212
EVENTSTORE_MAX_APPEND_SIZE
13+
EVENTSTORE_MAX_APPEND_EVENT_SIZE
1314
EVENTSTORE_MEM_DB
1415
EVENTSTORE_RUN_PROJECTIONS
1516
EVENTSTORE_START_STANDARD_PROJECTIONS

0 commit comments

Comments
 (0)