@@ -60,7 +60,7 @@ func TestCoordinatorSingle(t *testing.T) {
60
60
id := uuid .New ()
61
61
closeChan := make (chan struct {})
62
62
go func () {
63
- err := coordinator .ServeAgent (server , id )
63
+ err := coordinator .ServeAgent (server , id , "" )
64
64
assert .NoError (t , err )
65
65
close (closeChan )
66
66
}()
@@ -91,7 +91,7 @@ func TestCoordinatorSingle(t *testing.T) {
91
91
agentID := uuid .New ()
92
92
closeAgentChan := make (chan struct {})
93
93
go func () {
94
- err := coordinator .ServeAgent (agentServerWS , agentID )
94
+ err := coordinator .ServeAgent (agentServerWS , agentID , "" )
95
95
assert .NoError (t , err )
96
96
close (closeAgentChan )
97
97
}()
@@ -142,7 +142,7 @@ func TestCoordinatorSingle(t *testing.T) {
142
142
})
143
143
closeAgentChan = make (chan struct {})
144
144
go func () {
145
- err := coordinator .ServeAgent (agentServerWS , agentID )
145
+ err := coordinator .ServeAgent (agentServerWS , agentID , "" )
146
146
assert .NoError (t , err )
147
147
close (closeAgentChan )
148
148
}()
@@ -184,7 +184,7 @@ func TestCoordinatorHA(t *testing.T) {
184
184
agentID := uuid .New ()
185
185
closeAgentChan := make (chan struct {})
186
186
go func () {
187
- err := coordinator1 .ServeAgent (agentServerWS , agentID )
187
+ err := coordinator1 .ServeAgent (agentServerWS , agentID , "" )
188
188
assert .NoError (t , err )
189
189
close (closeAgentChan )
190
190
}()
@@ -240,7 +240,7 @@ func TestCoordinatorHA(t *testing.T) {
240
240
})
241
241
closeAgentChan = make (chan struct {})
242
242
go func () {
243
- err := coordinator1 .ServeAgent (agentServerWS , agentID )
243
+ err := coordinator1 .ServeAgent (agentServerWS , agentID , "" )
244
244
assert .NoError (t , err )
245
245
close (closeAgentChan )
246
246
}()
0 commit comments