Skip to content

Commit 4fa84f9

Browse files
authored
Dashboard Port Updates (#2406)
* port update * port fix
1 parent 1408ef5 commit 4fa84f9

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ cypress window will open locally - select test file to run the tests
158158

159159
9. `pip install jupyter`
160160
10. `cd notebooks\responsibleaidashboard`
161-
11. To execute tests run `yarn e2e-widget`. Sometimes it is preferable to watch the execution and select only individual test cases. This is possible by running the notebook manually and using `yarn e2e-widget -w --host {host} -n {notebook}` where host is where RAI widget runs on (printed in notebook output) and notebook is the name of the notebook you are running. Eg: `yarn e2e-widget -w --host 5000 -n responsibleaidashboard-census-classification-model-debugging`
161+
11. To execute tests run `yarn e2e-widget`. Sometimes it is preferable to watch the execution and select only individual test cases. This is possible by running the notebook manually and using `yarn e2e-widget -w --host {host} -n {notebook}` where host is where RAI widget runs on (printed in notebook output) and notebook is the name of the notebook you are running. Eg: `yarn e2e-widget -w --host 8704 -n responsibleaidashboard-census-classification-model-debugging`
162162

163163
Cypress window will open locally - select test file to run the tests.
164164

apps/dashboard/src/fairness/utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export const messages = {
3434

3535
// calculateMetrics can be used with local flask server for debugging
3636
/*export function calculateMetrics(postData: IMetricRequest): Promise<IMetricResponse> {
37-
return fetch("http://localhost:5000/1/metrics", {
37+
return fetch("http://localhost:8704/1/metrics", {
3838
method: "post",
3939
body: JSON.stringify(postData),
4040
headers: {

rai_core_flask/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Provide environment detection for enabling Flask server without configuring at i
1212
`flask_service = FlaskHelper(ip=<ip-to-listen-on>, port=<port-to-listen-on>)`
1313

1414
If `ip` is not specified then it listens on `localhost` by default.
15-
If `port` is not specified then it finds an open port in the range 5000 to 5099
15+
If `port` is not specified then it finds an open port in the range 8704 to 8993
1616
and listens on it.
1717

1818
To register a function to listen on an route:

rai_core_flask/rai_core_flask/flask_helper.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@ def __init__(self, ip=None, port=None, with_credentials=False):
3939
if self.port is None:
4040
# Try 100 different ports
4141
available = False
42-
for port in range(5000, 5100):
42+
for port in range(8704, 8994):
4343
available = FlaskHelper._is_local_port_available(
4444
self.ip, port, raise_error=False)
4545
if available:
4646
self.port = port
4747
break
4848

4949
if not available:
50-
error_message = """Ports 5000 to 5100 not available.
50+
error_message = """Ports 8704 to 8993 not available.
5151
Please specify an open port for use via the 'port'
5252
parameter"""
5353
raise RuntimeError(

rai_core_flask/tests/test_environment_detector.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def test_public_vm_fail_on_port(self, mocker):
3434
return_value=False)
3535
with pytest.raises(RuntimeError) as exception:
3636
FlaskHelper(ip="not localhost", with_credentials=False)
37-
assert "Ports 5000 to 5100 not available." in \
37+
assert "Ports 8704 to 8993 not available." in \
3838
exception.value.args[0]
3939

4040
def test_local(self):

rai_core_flask/tests/test_flask_helper.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ class TestFlaskHelper(object):
1414

1515
def setup_class(cls):
1616
"""Set up once for all tests."""
17-
cls.port_range_start = 5000
18-
cls.port_range_end = 5099
17+
cls.port_range_start = 8704
18+
cls.port_range_end = 8993
1919
cls.test_ip_local = "localhost"
20-
cls.test_port_local = 5100
20+
cls.test_port_local = 8994
2121

2222
def get_http_client(self):
2323
"""Get HTTP client with automatic retries."""
@@ -35,7 +35,7 @@ def test_without_explicit_port(self):
3535

3636
flask_service = FlaskHelper(ip=self.test_ip_local)
3737

38-
assert (flask_service.port >= 5000 and flask_service.port <= 5099)
38+
assert (flask_service.port >= 8704 and flask_service.port <= 8993)
3939

4040
@flask_service.app.route("/hello", methods=["GET"])
4141
def hello():

0 commit comments

Comments
 (0)