|
13 | 13 | from time import sleep
|
14 | 14 | import ipywidgets as widgets
|
15 | 15 | import socket
|
16 |
| -import warnings |
17 | 16 | import json
|
18 | 17 |
|
19 | 18 |
|
@@ -165,33 +164,21 @@ def run_server(self):
|
165 | 164 |
|
166 | 165 |
|
167 | 166 | 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 | + ) |
176 | 170 |
|
177 | 171 |
|
178 | 172 | 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 | + ) |
187 | 176 |
|
188 | 177 |
|
189 | 178 | 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 | + ) |
195 | 182 |
|
196 | 183 |
|
197 | 184 | def is_port_free(port: int) -> bool:
|
|
0 commit comments