File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ import (
14
14
)
15
15
16
16
var address = flag .String ("address" , "localhost:8081" , "The address on which the UI and API is served" )
17
+ var ciAddress = flag .String ("ciAddress" , "" , "The address on which the CI connection is served" )
17
18
var visionAddress = flag .String ("visionAddress" , "" , "The address (ip+port) from which vision packages are received" )
18
19
var trackerAddress = flag .String ("trackerAddress" , "" , "The address (ip+port) from which tracker packages are received" )
19
20
var publishAddress = flag .String ("publishAddress" , "" , "The address (ip+port) to which referee command should be sent" )
@@ -53,6 +54,9 @@ func setupGameController() {
53
54
if skipInterfaces != nil && * skipInterfaces != "" {
54
55
cfg .Network .SkipInterfaces = parseSkipInterfaces ()
55
56
}
57
+ if ciAddress != nil && * ciAddress != "" {
58
+ cfg .Server .Ci .Address = * ciAddress
59
+ }
56
60
57
61
gameController := gc .NewGameController (cfg )
58
62
gameController .SetVerbose (* verbose )
You can’t perform that action at this time.
0 commit comments