Fixing values inside of proto for CronWorkflow fields.

This commit is contained in:
Aleksandr Melnikov
2020-03-26 23:52:07 -07:00
parent 9ea94f5bb1
commit 24b3fe57fb
9 changed files with 65 additions and 49 deletions

View File

@@ -27,9 +27,9 @@ message CronWorkflow {
string timezone = 2;
bool suspend = 3;
string concurrencyPolicy = 4;
string startingDeadlineSeconds = 5;
string successfulJobsHistoryLimit = 6;
string failedJobsHistoryLimit = 7;
int64 startingDeadlineSeconds = 5;
int32 successfulJobsHistoryLimit = 6;
int32 failedJobsHistoryLimit = 7;
WorkflowExecution workflowExecution = 8;
}