diff options
Diffstat (limited to 'internal/gitlabnet/accessverifier/client.go')
-rw-r--r-- | internal/gitlabnet/accessverifier/client.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/internal/gitlabnet/accessverifier/client.go b/internal/gitlabnet/accessverifier/client.go index 9389257..6272c8b 100644 --- a/internal/gitlabnet/accessverifier/client.go +++ b/internal/gitlabnet/accessverifier/client.go @@ -65,7 +65,6 @@ type Response struct { ConsoleMessages []string `json:"gl_console_messages"` Who string StatusCode int - CorrelationID string } func NewClient(config *config.Config) (*Client, error) { @@ -110,8 +109,6 @@ func parse(hr *http.Response, args *commandargs.Shell) (*Response, error) { } response.StatusCode = hr.StatusCode - // We expect the same correlation ID that we sent - response.CorrelationID = hr.Header.Get("X-Request-Id") return response, nil } |