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:
authorPatrick Steinhardt <psteinhardt@gitlab.com>2021-02-10 11:41:09 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2021-02-10 12:53:46 +0300
commitacccca3c4279cc6cf82b6ffcaf9c819e6e8491f4 (patch)
tree343fc9deef04c03479da8ec4b54a1e907718c90a
parentf1520417f9953e7f82e3614539f0221bf255a39e (diff)
praefect: Remove log message when running test Praefect servers
When running a test Praefect server, we're logging the port on which the server is listening. This log message isn't helpful at all during normal test runs, so let's drop it.
-rw-r--r--internal/praefect/helper_test.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/internal/praefect/helper_test.go b/internal/praefect/helper_test.go
index 3a05298a1..84d7de474 100644
--- a/internal/praefect/helper_test.go
+++ b/internal/praefect/helper_test.go
@@ -180,7 +180,6 @@ func runPraefectServer(t testing.TB, conf config.Config, opt buildOptions) (*grp
prf := NewGRPCServer(conf, opt.withLogger, protoregistry.GitalyProtoPreregistered, coordinator.StreamDirector, opt.withNodeMgr, opt.withTxMgr, opt.withQueue, opt.withRepoStore, nil)
listener, port := listenAvailPort(t)
- t.Logf("proxy listening on port %d", port)
errQ := make(chan error)
ctx, cancel := testhelper.Context()