@@ -80,6 +80,7 @@ func TestDockerClusterDifferentLogDir(t *testing.T) {
8080 "--label starter-test=true" ,
8181 "--name=" + cID1 ,
8282 "--rm" ,
83+ createLicenseKeyOption (),
8384 fmt .Sprintf ("-p %d:%d" , basePort , basePort ),
8485 fmt .Sprintf ("-v %s:/data" , volID1 ),
8586 fmt .Sprintf ("-v %s:%s" , masterLogDir , masterLogDir ),
@@ -100,6 +101,7 @@ func TestDockerClusterDifferentLogDir(t *testing.T) {
100101 "--label starter-test=true" ,
101102 "--name=" + cID2 ,
102103 "--rm" ,
104+ createLicenseKeyOption (),
103105 fmt .Sprintf ("-p %d:%d" , basePort + (1 * portIncrement ), basePort ),
104106 fmt .Sprintf ("-v %s:/data" , volID2 ),
105107 fmt .Sprintf ("-v %s:%s" , slave1LogDir , slave1LogDir ),
@@ -121,6 +123,7 @@ func TestDockerClusterDifferentLogDir(t *testing.T) {
121123 "--label starter-test=true" ,
122124 "--name=" + cID3 ,
123125 "--rm" ,
126+ createLicenseKeyOption (),
124127 fmt .Sprintf ("-p %d:%d" , basePort + (2 * portIncrement ), basePort ),
125128 fmt .Sprintf ("-v %s:/data" , volID3 ),
126129 fmt .Sprintf ("-v %s:%s" , slave2LogDir , slave2LogDir ),
@@ -211,6 +214,7 @@ func TestDockerClusterDifferentLogDirNoLog2File(t *testing.T) {
211214 "--label starter-test=true" ,
212215 "--name=" + cID1 ,
213216 "--rm" ,
217+ createLicenseKeyOption (),
214218 fmt .Sprintf ("-p %d:%d" , basePort , basePort ),
215219 fmt .Sprintf ("-v %s:/data" , volID1 ),
216220 fmt .Sprintf ("-v %s:%s" , masterLogDir , masterLogDir ),
@@ -232,6 +236,7 @@ func TestDockerClusterDifferentLogDirNoLog2File(t *testing.T) {
232236 "--label starter-test=true" ,
233237 "--name=" + cID2 ,
234238 "--rm" ,
239+ createLicenseKeyOption (),
235240 fmt .Sprintf ("-p %d:%d" , basePort + (1 * portIncrement ), basePort ),
236241 fmt .Sprintf ("-v %s:/data" , volID2 ),
237242 fmt .Sprintf ("-v %s:%s" , slave1LogDir , slave1LogDir ),
@@ -254,6 +259,7 @@ func TestDockerClusterDifferentLogDirNoLog2File(t *testing.T) {
254259 "--label starter-test=true" ,
255260 "--name=" + cID3 ,
256261 "--rm" ,
262+ createLicenseKeyOption (),
257263 fmt .Sprintf ("-p %d:%d" , basePort + (2 * portIncrement ), basePort ),
258264 fmt .Sprintf ("-v %s:/data" , volID3 ),
259265 fmt .Sprintf ("-v %s:%s" , slave2LogDir , slave2LogDir ),
0 commit comments