From f059d317dbda7c4b5a899968651639260430771e Mon Sep 17 00:00:00 2001 From: wxing1292 Date: Thu, 8 Feb 2018 16:58:37 -0800 Subject: [PATCH] bugfix: add missing config for docker (#546) --- config/development.yaml | 6 +++--- docker/config_template.yaml | 8 ++++++++ 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/config/development.yaml b/config/development.yaml index 42a832ed0ed..649729e1bb5 100644 --- a/config/development.yaml +++ b/config/development.yaml @@ -48,7 +48,7 @@ services: clustersInfo: initialFailoverVersion: 0 failoverVersionIncrement: 10 - currentClusterName: "sjc1" + currentClusterName: "active" clusterNames: - - "dca1" - - "sjc1" \ No newline at end of file + - "active" + - "standby" \ No newline at end of file diff --git a/docker/config_template.yaml b/docker/config_template.yaml index 6e6370d2fd1..b2395929aec 100644 --- a/docker/config_template.yaml +++ b/docker/config_template.yaml @@ -42,3 +42,11 @@ services: statsd: hostPort: "${STATSD_ENDPOINT}" prefix: "cadence-history" + +clustersInfo: + initialFailoverVersion: 0 + failoverVersionIncrement: 10 + currentClusterName: "active" + clusterNames: + - "active" + - "standby"