blob: cf210668070126569cd3b91b474609a04134f1d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<!-- help.html,
-- Copyright (C) 2026 Private Island Networks Inc.
-->
{% extends "base.html" %} {% block content %}
<p>
For help, please email <a href="mailto:opensource@privateisland.tech">Support</a>
or enter question on our <a href="https://privateisland.tech/forum" target="_blank">forum</a>
</p>
{% include "divider.html" %}
<h3>Known Issues, as of 3/3/26:</h3>
<ul>
<li>aio-http: Determine proper way to use WS for sending data that isn't in response to a request.</li>
<li>Fix blocking issue. Can we await "q.get(block=True)" in main.py?</li>
<li>Error handling in Controller and other forms. Need exception handling and then
return a meaningful JS error.</li>
<li>Close Websocket on refresh. On Unload.</li>
<li>Are multiple ws handlers needed for the different tabs?</li>
<li>Make sure there are no Python globals (e.g., q)</li>
<li>The JS logic for the MLE tab needs to be reviewed and fixed.</li>
</ul>
{% endblock %}
|