Skip to content

Commit ab78768

Browse files
author
Alistair Davidson
committed
use port 5001 for the reporting app, as Mac OSX often has a service permanently running on port 5000
1 parent dce22ed commit ab78768

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

config/settings.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ splunk:
4646
hec_token: <%= Rails.application.credentials.splunk&.hec_token %>
4747

4848
mavis_reporting_app:
49-
root_url: http://localhost:5000/
49+
root_url: http://localhost:5001/
5050
# secret:
5151
# client_id:
5252
token_ttl_seconds: 300

config/settings/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ splunk:
1919
enabled: false
2020

2121
mavis_reporting_app:
22-
root_url: http://localhost:5000/
22+
root_url: http://localhost:5001/
2323
secret: "abcdef0123456789abcdef0123456789"
2424
client_id: "testing_client_id"

spec/support/redirect_helper.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def then_i_am_redirected_to_a_url_matching(url_pattern)
2828
end
2929

3030
def mavis_reporting_app_url(path = "/")
31-
root = Settings.mavis_reporting_app.root_url || "http://localhost:5000/"
31+
root = Settings.mavis_reporting_app.root_url || "http://localhost:5001/"
3232
URI.join(root, path).to_s
3333
end
3434
end

0 commit comments

Comments
 (0)