nizhikov commented on a change in pull request #9054:
URL: https://github.com/apache/ignite/pull/9054#discussion_r632981564
##########
File path:
modules/core/src/main/java/org/apache/ignite/internal/processors/platform/utils/PlatformConfigurationUtils.java
##########
@@ -2199,6 +2200,7 @@ private static void
writeDataStorageConfiguration(BinaryRawWriter w, DataStorage
w.writeInt(cfg.getPageSize());
w.writeInt(cfg.getConcurrencyLevel());
w.writeLong(cfg.getWalAutoArchiveAfterInactivity());
+ w.writeLong(cfg.getWalForceArchiveTimeout());
Review comment:
This responsible for "platform" interaction, e.g. always have the same
.Net and Ignite versions.
No need to provide compatibility here.
##########
File path:
modules/platforms/dotnet/Apache.Ignite.Core/Configuration/DataStorageConfiguration.cs
##########
@@ -241,6 +242,7 @@ internal DataStorageConfiguration(IBinaryRawReader reader)
PageSize = reader.ReadInt();
ConcurrencyLevel = reader.ReadInt();
WalAutoArchiveAfterInactivity = reader.ReadLongAsTimespan();
+ WalForceArchiveTimeout = reader.ReadLongAsTimespan();
Review comment:
This responsible for "platform" interaction, e.g. always have the same
.Net and Ignite versions.
No need to provide compatibility here.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]