Commit 252a8b012021c862fbbfa92b82645aa0af983fea
1 parent
a3d0b4b0
Exists in
dev
Changing few guitastro import due to guitastro restructuration
Showing
5 changed files
with
10 additions
and
4 deletions
Show diff stats
CHANGELOG
1 | +08-08-2022 (AKo): v0.5.1 | |
2 | + - Adding better handling of import of root project path for agents | |
3 | + - Adding nb_restart of an agent reset in AgentSST when (re)starting an agent | |
4 | + - AgentSST : kill command now send do_exit (was sending do_abort) due to new implementation of those commands | |
5 | + - | |
6 | + | |
1 | 7 | 12-07-2022 (AKo): v0.5.1 |
2 | 8 | - Change on naming of Agent (take his name from obsconfig) |
3 | 9 | - Fixing AgentSST (Adding timeout of commands) | ... | ... |
src/core/pyros_django/dashboard/views.py
... | ... | @@ -33,7 +33,7 @@ from django.conf import settings as pyros_settings |
33 | 33 | sys.path.append("../../..") |
34 | 34 | from config.pyros.config_pyros import ConfigPyros |
35 | 35 | #import utils.celme as celme |
36 | -import vendor.guitastro as guitastro | |
36 | +import vendor.guitastro.src.guitastro as guitastro | |
37 | 37 | from django.contrib import messages |
38 | 38 | |
39 | 39 | ... | ... |
src/core/pyros_django/utils/report/status_json.py
... | ... | @@ -19,7 +19,7 @@ if (py_pwd not in py_path): |
19 | 19 | |
20 | 20 | #import utils.celme as celme |
21 | 21 | #sys.path.append('..') |
22 | -import vendor.guitastro as guitastro | |
22 | +import vendor.guitastro.src.guitastro as guitastro | |
23 | 23 | |
24 | 24 | # ======================================================== |
25 | 25 | # ======================================================== | ... | ... |
src/device_controller/abstract_component/mount.py
... | ... | @@ -18,7 +18,7 @@ import time |
18 | 18 | # from src_socket/client/ |
19 | 19 | sys.path.append("../../../..") |
20 | 20 | #import src.core.pyros_django.utils.celme as celme |
21 | -import vendor.guitastro as guitastro | |
21 | +import vendor.guitastro.src.guitastro as guitastro | |
22 | 22 | |
23 | 23 | |
24 | 24 | # Local application imports | ... | ... |
src/device_controller/abstract_component/plc.py
... | ... | @@ -21,7 +21,7 @@ sys.path.append("..") |
21 | 21 | # from src_socket/client/ |
22 | 22 | sys.path.append("../../..") |
23 | 23 | #import src.core.pyros_django.utils.celme as celme |
24 | -import vendor.guitastro as guitastro | |
24 | +import vendor.guitastro.src.guitastro as guitastro | |
25 | 25 | |
26 | 26 | |
27 | 27 | # Local application imports | ... | ... |