diff options
author | Igor Drozdov <idrozdov@gitlab.com> | 2021-05-24 09:35:16 +0000 |
---|---|---|
committer | Igor Drozdov <idrozdov@gitlab.com> | 2021-05-24 09:35:16 +0000 |
commit | 8116ccb9cbc0a60803b3a9896057c79c70016eb3 (patch) | |
tree | 85e5feca1050427113d9fe6e5051c52331b3a7ab /internal/command/uploadpack | |
parent | 90b606cde3d71d8a4450a5b5da9be4454c7b379f (diff) | |
parent | de13980f3795679958a65881a813723da37894f5 (diff) | |
download | gitlab-shell-8116ccb9cbc0a60803b3a9896057c79c70016eb3.tar.gz |
Merge branch '501-fix-opentracing-init' into 'main'
Fix opentracing setup for gitlab-sshd
Closes #501
See merge request gitlab-org/gitlab-shell!473
Diffstat (limited to 'internal/command/uploadpack')
-rw-r--r-- | internal/command/uploadpack/gitalycall_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/command/uploadpack/gitalycall_test.go b/internal/command/uploadpack/gitalycall_test.go index bedc6e6..6b4c6ba 100644 --- a/internal/command/uploadpack/gitalycall_test.go +++ b/internal/command/uploadpack/gitalycall_test.go @@ -37,6 +37,7 @@ func TestUploadPack(t *testing.T) { hook := testhelper.SetupLogger() ctx := correlation.ContextWithCorrelation(context.Background(), "a-correlation-id") + ctx = correlation.ContextWithClientName(ctx, "gitlab-shell-tests") err := cmd.Execute(ctx) require.NoError(t, err) |