-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
robot
committed
Sep 4, 2023
1 parent
bd224cb
commit b96c348
Showing
5 changed files
with
85 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
namespace slo.Cli; | ||
|
||
internal record CreateConfig(string Endpoint, string Db, string TableName, int MinPartitionsCount, | ||
int MaxPartitionsCount, int PartitionSize, int InitialDataCount, int WriteTimeout); | ||
int MaxPartitionsCount, int PartitionSize, int InitialDataCount, int WriteTimeout, FileInfo? X590CertPath); | ||
|
||
internal record CleanUpConfig(string Endpoint, string Db, string TableName, int WriteTimeout); | ||
internal record CleanUpConfig(string Endpoint, string Db, string TableName, int WriteTimeout, FileInfo? X590CertPath); | ||
|
||
internal record RunConfig(string Endpoint, string Db, string TableName, int InitialDataCount, | ||
string PromPgw, | ||
int ReportPeriod, int ReadRps, int ReadTimeout, int WriteRps, int WriteTimeout, int Time, | ||
int ShutdownTime); | ||
internal record RunConfig(string Endpoint, string Db, string TableName, int InitialDataCount, string PromPgw, | ||
int ReportPeriod, int ReadRps, int ReadTimeout, int WriteRps, int WriteTimeout, int Time, int ShutdownTime, | ||
FileInfo? X590CertPath); |