diff --git a/bin/dump_ConfigDb.sh b/bin/dump_ConfigDb.sh index 0dc634c458b76cd5d3c13e2d7dab6e905f66248a..c1f6dc214e32458af1f1d555332ecb40c2b71601 100755 --- a/bin/dump_ConfigDb.sh +++ b/bin/dump_ConfigDb.sh @@ -1,4 +1,4 @@ #!/bin/bash # writes the JSON dump to stdout, Do not change -i into -it incompatible with gitlab ci! -docker exec -i "${CONTAINER_NAME_PREFIX}"dsconfig python -m dsconfig. +docker exec -i "${CONTAINER_NAME_PREFIX}"dsconfig python -m dsconfig.dump diff --git a/docker-compose/jupyter/ipython-profiles/stationcontrol-jupyter/startup/02-stationcontrol.py b/docker-compose/jupyter/ipython-profiles/stationcontrol-jupyter/startup/02-stationcontrol.py index d2d810b1ad5915504e4a5b508e9a128bd2981628..d21ed1cf013d73b700cbc72e3d89ef9541efcacc 100644 --- a/docker-compose/jupyter/ipython-profiles/stationcontrol-jupyter/startup/02-stationcontrol.py +++ b/docker-compose/jupyter/ipython-profiles/stationcontrol-jupyter/startup/02-stationcontrol.py @@ -1 +1 @@ -from tangostationcontrol import * \ No newline at end of file +import tangostationcontrol diff --git a/docs/source/devices/using.rst b/docs/source/devices/using.rst index b5c41bd8089bc88d606ee0fe7bf8c442ff259475..e328467f6bb01b17577bc8b5e1b99b5caeed7090 100644 --- a/docs/source/devices/using.rst +++ b/docs/source/devices/using.rst @@ -50,7 +50,9 @@ FAULT `````````` If a device enters the ``FAULT`` state, it means an error occurred that is fundamental to the operation of the software device. For example, the connection -to the hardware was lost. +to the hardware was lost. TO see the error reason, use + +:status(): The verbose status of the device, f.e. the reason why the device went to ``FAULT``. Interaction with the device in the ``FAULT`` state is undefined, and attributes cannot be read or written. The device needs to be reinitialised, which typically involves the following sequence of commands::