Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/shared
diff options
context:
space:
mode:
authorNick Thomas <nick@gitlab.com>2017-04-24 19:31:28 +0300
committerNick Thomas <nick@gitlab.com>2017-04-24 19:36:52 +0300
commit829176ac76c1dc25373800824602261940fca121 (patch)
treeabb862b0ab1466be47c28d51d65e43bc5a53dd69 /shared
parent9851a84c2af522d982ce4a1f1b6521503b11c512 (diff)
Fix reading configuration for multiple custom domains
Without this patch, the different domains end up with pointers to the same domainsConfig struct, as go re-uses the same region of memory on each iteration of a for loop.
Diffstat (limited to 'shared')
-rw-r--r--shared/pages/group/group.test.io/config.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/pages/group/group.test.io/config.json b/shared/pages/group/group.test.io/config.json
index 1643525d..5b9be1fd 100644
--- a/shared/pages/group/group.test.io/config.json
+++ b/shared/pages/group/group.test.io/config.json
@@ -9,7 +9,7 @@
{
"Domain": "other.domain.com",
"Certificate": "test",
- "Certificate": "key"
+ "Key": "key"
}
]
}