We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a215108 commit 893ccf8Copy full SHA for 893ccf8
shutdown_test.go
@@ -418,9 +418,12 @@ func TestGracefulShutdownCloseConcurrent(t *testing.T) {
418
419
// Do not wait till Tarantool register out watcher,
420
// test everything is ok even on async.
421
-
422
- conn := test_helpers.ConnectWithValidation(t, shtdnServer, shtdnClntOpts)
423
- defer conn.Close()
+ conn, err := Connect(shtdnServer, shtdnClntOpts)
+ if err != nil {
+ t.Errorf("Failed to connect: %s", err)
424
+ } else {
425
+ defer conn.Close()
426
+ }
427
428
// Wait till all connections created.
429
srvToStop.Done()
0 commit comments