From db18eb9fa2eb6ee278ca3bcbe56c1814826ff8ad Mon Sep 17 00:00:00 2001 From: Robert Gogolok Date: Thu, 11 Jun 2015 11:25:05 +0200 Subject: [PATCH] testutil: support ACLMasterToken, ACLDatacenter and ACLDefaultPolicy --- testutil/server.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/testutil/server.go b/testutil/server.go index 0492988e17..66b4f95097 100644 --- a/testutil/server.go +++ b/testutil/server.go @@ -59,6 +59,9 @@ type TestServerConfig struct { Bind string `json:"bind_addr,omitempty"` Addresses *TestAddressConfig `json:"addresses,omitempty"` Ports *TestPortConfig `json:"ports,omitempty"` + ACLMasterToken string `json:"acl_master_token,omitempty"` + ACLDatacenter string `json:"acl_datacenter,omitempty"` + ACLDefaultPolicy string `json:"acl_default_policy,omitempty"` Stdout, Stderr io.Writer `json:"-"` }