Fix streaming API redirection ignoring the port of streaming_api_base_url
(#28558)
This commit is contained in:
parent
c609b726cb
commit
01caa18e5b
1 changed files with 3 additions and 1 deletions
|
@ -13,7 +13,9 @@ class Api::V1::StreamingController < Api::BaseController
|
||||||
|
|
||||||
def streaming_api_url
|
def streaming_api_url
|
||||||
Addressable::URI.parse(request.url).tap do |uri|
|
Addressable::URI.parse(request.url).tap do |uri|
|
||||||
uri.host = Addressable::URI.parse(Rails.configuration.x.streaming_api_base_url).host
|
base_url = Addressable::URI.parse(Rails.configuration.x.streaming_api_base_url)
|
||||||
|
uri.host = base_url.host
|
||||||
|
uri.port = base_url.port
|
||||||
end.to_s
|
end.to_s
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue