Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSami Hiltunen <shiltunen@gitlab.com>2021-03-31 13:30:43 +0300
committerSami Hiltunen <shiltunen@gitlab.com>2021-04-07 13:51:28 +0300
commitd1fca4def6a5d510faf996ab58503223f5f4fe25 (patch)
treee6fa95730322e98f570aedcf0d1949c31fec2b7c /internal/praefect/node_test.go
parent028a241a971afd98989fecbbb749c187c97deb2a (diff)
inject backchannel ClientHandshaker from main
This commit injects the multiplexing handshaker from Praefect's main to the dialing locations. This allows us to later plug in a backchannel server easily. This commit has no changes to the functionality itself.
Diffstat (limited to 'internal/praefect/node_test.go')
-rw-r--r--internal/praefect/node_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/praefect/node_test.go b/internal/praefect/node_test.go
index d277e106f..d2abe5432 100644
--- a/internal/praefect/node_test.go
+++ b/internal/praefect/node_test.go
@@ -78,7 +78,7 @@ func TestDialNodes(t *testing.T) {
Storage: "invalid",
Address: "unix:non-existent-socket",
}),
- }}, nil, nil,
+ }}, nil, nil, nil,
)
require.NoError(t, err)
defer nodeSet.Close()