Skip to content
Snippets Groups Projects
Commit 11f882ca authored by Kamil Trzcińśki's avatar Kamil Trzcińśki
Browse files

Upgrade GitLab Workhorse to v3.6.0

parent 9483cbab
No related branches found
No related tags found
No related merge requests found
3.5.1
3.6.0
---
title: Upgrade GitLab Workhorse to v3.6.0
merge_request:
author:
type: other
Loading
Loading
@@ -161,6 +161,18 @@ module Gitlab
]
end
 
def send_url(url, allow_redirects: false)
params = {
'URL' => url,
'AllowRedirects' => allow_redirects
}
[
SEND_DATA_HEADER,
"send-url:#{encode(params)}"
]
end
def terminal_websocket(terminal)
details = {
'Terminal' => {
Loading
Loading
Loading
Loading
@@ -465,4 +465,21 @@ describe Gitlab::Workhorse do
end
end
end
describe '.send_url' do
let(:url) { 'http://example.com' }
subject { described_class.send_url(url) }
it 'sets the header correctly' do
key, command, params = decode_workhorse_header(subject)
expect(key).to eq("Gitlab-Workhorse-Send-Data")
expect(command).to eq("send-url")
expect(params).to eq({
'URL' => url,
'AllowRedirects' => false
}.deep_stringify_keys)
end
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment