Skip to content

Commit fb7c9bb

Browse files
change warning message
1 parent 16a64c4 commit fb7c9bb

File tree

4 files changed

+79
-24
lines changed

4 files changed

+79
-24
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"id": "f65f3d5a-3b08-43c8-bc85-66d7ee8068b9",
6+
"metadata": {},
7+
"source": [
8+
"# Communication server remark\n",
9+
"Stormvogel uses a local server (or multiple local servers if multiple kernels are running) to communicate between visualization elements (Javascript frontend) and Python. Sometimes this communication fails and when this happens the user gets a warning. Stormvogel is perfectly usable without this server, but you can no longer save the node positions of a layout. If you really need to save node positions, here are some pointers to fixing the issue."
10+
]
11+
},
12+
{
13+
"cell_type": "markdown",
14+
"id": "cb96e5e3-0092-4670-8c2b-d4f923a8d734",
15+
"metadata": {},
16+
"source": [
17+
"### Could not start server / test request failed / no free port.\n",
18+
"1) Restart the kernel and re-run.\n",
19+
"2) If you are working remotely, you need to forward ports 8889-8905. For example: `ssh -N -L 8889:localhost:8889 YOUR_SSH_CONFIG_NAME`.<br>\n",
20+
"Check if the port range localhost:8889-8905 (from the machine where jupyterlab runs) is available.<br>\n",
21+
"If you cannot use this range, try setting `stormvogel.communication_server.min_port` and `max_port` to a port range that is available.\n",
22+
"3) You might also want to consider changing `stormvogel.communication_server.localhost_address` to the IPv6 loopback address if you are using IPv6.\n",
23+
"\n",
24+
"Please contact the stormvogel developpers if you keep running into issues.\n",
25+
"\n",
26+
"You can also disable the warning message by setting `use_server` to `False` in your call to `show`\n",
27+
"\n",
28+
"Example:"
29+
]
30+
},
31+
{
32+
"cell_type": "code",
33+
"execution_count": 2,
34+
"id": "7ee6cb3a-2336-466e-9f98-57db32a4f6cb",
35+
"metadata": {},
36+
"outputs": [],
37+
"source": [
38+
"import stormvogel\n",
39+
"stormvogel.communication_server.min_port = 3000\n",
40+
"stormvogel.communication_server.max_port = 3020\n",
41+
"stormvogel.communication_server.localhost_address = \"::1/128\"\n",
42+
"stormvogel.communication_server.use_server = False"
43+
]
44+
}
45+
],
46+
"metadata": {
47+
"kernelspec": {
48+
"display_name": "Python 3 (ipykernel)",
49+
"language": "python",
50+
"name": "python3"
51+
},
52+
"language_info": {
53+
"codemirror_mode": {
54+
"name": "ipython",
55+
"version": 3
56+
},
57+
"file_extension": ".py",
58+
"mimetype": "text/x-python",
59+
"name": "python",
60+
"nbconvert_exporter": "python",
61+
"pygments_lexer": "ipython3",
62+
"version": "3.12.3"
63+
}
64+
},
65+
"nbformat": 4,
66+
"nbformat_minor": 5
67+
}

stormdays_tutorial.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -701,7 +701,7 @@
701701
},
702702
{
703703
"cell_type": "code",
704-
"execution_count": 8,
704+
"execution_count": 10,
705705
"id": "d98faeac-1317-48eb-9819-472b553de3d1",
706706
"metadata": {},
707707
"outputs": [

stormvogel/communication_server.py

+9-22
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
from time import sleep
1414
import ipywidgets as widgets
1515
import socket
16-
import warnings
1716
import json
1817

1918

@@ -165,33 +164,21 @@ def run_server(self):
165164

166165

167166
def __warn_request():
168-
warnings.warn(f"""Stormvogel succesfully started the internal communication server, but could not receive the result of a test request.
169-
Stormvogel is still usable without this, but you will not be able to save node positions in a layout json file.
170-
1) Restart the kernel and re-run.
171-
2) Is the port {localhost_address}:{server_port} (from the machine where jupyterlab runs) available?
172-
If you are working remotely, it might help to forward this port. For example: 'ssh -N -L {server_port}:{localhost_address}:{server_port} YOUR_SSH_CONFIG_NAME'.
173-
3) You might also want to consider changing stormvogel.communication_server.localhost_address to the IPv6 loopback address if you are using IPv6.
174-
If you cannot get the server to work, set stormvogel.communication_server.enable_server to false and re-run. This will speed up stormvogel and ignore this message.
175-
Please contact the stormvogel developpers if you keep running into issues.""")
167+
print(
168+
"Test request failed. See 'Communication server remark' in docs. Disable warning by use_server=False."
169+
)
176170

177171

178172
def __warn_server():
179-
warnings.warn(f"""Stormvogel could not run an internal server to communicate between local processes on {localhost_address}:{server_port}.
180-
Stormvogel is still usable without this, but you will not be able to save node positions in a layout json file.
181-
This might be solved as such:
182-
1) Restart the kernel and re-run.
183-
2) Port {server_port} might already be used by another process, or even another jupyter lab kernel. Try changing stormvogel.communication_server.server_port and running again.
184-
3) You might also want to consider changing stormvogel.communication_server.localhost_address to the IPv6 loopback address if you are using IPv6.
185-
If you cannot get the server to work, set stormvogel.communication_server.enable_server to false and re-run. This will speed up stormvogel and ignore this message.
186-
Please contact the stormvogel developpers if you keep running into issues.""")
173+
print(
174+
"Could not start server. See 'Communication server remark' in docs. Disable warning by use_server=False."
175+
)
187176

188177

189178
def __warn_no_free_port():
190-
warnings.warn(f"""Stormvogel could not find a free port in the range [{min_port, max_port}) to host a local process.
191-
Stormvogel can still function without this, but you will not be able to save node positions in a layout json file.
192-
If you have a lot of notebooks open, it might help to restart jupyter lab or close some kernels from other notebooks.
193-
If the default range of ports does not work for you, feel free to edit stormvogel.communication_server.min_port and stormvogel.communication_server.max_port.
194-
Please contact the stormvogel developpers if you keep running into issues.""")
179+
print(
180+
f"""No free port [{min_port, max_port}). See 'Communication server remark' in docs. Disable warning by use_server=False."""
181+
)
195182

196183

197184
def is_port_free(port: int) -> bool:

stormvogel/show.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ def show(
2020
show_editor: bool = False,
2121
debug_output: widgets.Output = widgets.Output(),
2222
use_iframe: bool = False,
23+
do_init_server: bool = True,
2324
) -> stormvogel.visualization.Visualization:
2425
"""Create and show a visualization of a Model using a visjs Network
2526
@@ -44,7 +45,7 @@ def show(
4445
layout=layout,
4546
do_display=False,
4647
debug_output=debug_output,
47-
do_init_server=True,
48+
do_init_server=do_init_server,
4849
use_iframe=use_iframe,
4950
)
5051
vis.show()

0 commit comments

Comments
 (0)