0
0
Fork 0

Change streaming API host to not be overridden to localhost in development mode (#28557)

This commit is contained in:
Claire 2024-01-03 11:23:58 +01:00 committed by GitHub
parent 7cce2a41f2
commit bd415af9a1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -23,7 +23,7 @@ Rails.application.configure do
if Rails.env.production?
"ws#{https ? 's' : ''}://#{web_host}"
else
"ws://#{ENV['REMOTE_DEV'] == 'true' ? host.split(':').first : 'localhost'}:4000"
"ws://#{host.split(':').first}:4000"
end
end