We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07ac014 commit e743c79Copy full SHA for e743c79
src/blueapi/startup/example_devices.py
@@ -1,5 +1,4 @@
1
from pathlib import Path
2
-from tempfile import TemporaryDirectory
3
4
from dodal.common.beamlines.beamline_utils import set_path_provider
5
from dodal.common.visit import LocalDirectoryServiceClient, StaticVisitPathProvider
@@ -9,7 +8,9 @@
9
8
10
# Some of our plans such as "count" and "spec_scan" require this global
11
# singleton to be set
12
-_tmp_dir = Path(TemporaryDirectory().name)
+
+# Workaround for https://github.com/DiamondLightSource/blueapi/issues/784
13
+_tmp_dir = Path("/does/not/exist")
14
set_path_provider(
15
StaticVisitPathProvider(
16
"t01",
0 commit comments