Skip to content

Commit f32e5f8

Browse files
Merge branch 'main' into unfuck_polling_plan
2 parents 37144fc + 1925b72 commit f32e5f8

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

doc/callbacks/file_writing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ of the scan, in `C:\instrument\var\logs\bluesky\output_files\`.
4949

5050
Optional parameters, not shown above, include:
5151
- `output_dir` parameter is optional, if not input the file will by default be placed in
52-
`\\isis\inst$\ndx<inst>\user\TEST\scans\<rbnumber>`.
52+
`\\isis\inst$\ndx<inst>\user\bluesky_scans\<rbnumber>`.
5353
- `postfix` an optional suffix to append to the end of the file name, to disambiguate scans. Default is no suffix.
5454

5555
The data is prepended on the first event with the names and units of each logged field, and then subsequently the data

doc/dev/troubleshooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ showing how to do this.
4343

4444
### Scientist-facing data
4545

46-
Scientist-facing output files are written to `<isis share>\inst$\NDX<inst>\user\test\scans\<current rb number>` by
46+
Scientist-facing output files are written to `<isis share>\inst$\NDX<inst>\user\bluesky_scans\<current rb number>` by
4747
default.
4848

4949
Custom file-output paths can be specified by passing extra arguments to

src/ibex_bluesky_core/callbacks/_fitting.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def __init__(
146146

147147
self.livefit = livefit
148148
self.postfix = postfix
149-
self.output_dir = Path(output_dir or get_default_output_path() / "fitting")
149+
self.output_dir = Path(output_dir or get_default_output_path())
150150
self.current_start_document: str | None = None
151151

152152
self.x = x

src/ibex_bluesky_core/callbacks/_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def get_instrument() -> str:
3434
def get_default_output_path() -> Path:
3535
output_dir_env = os.environ.get(OUTPUT_DIR_ENV_VAR)
3636
return (
37-
Path("//isis.cclrc.ac.uk/inst$") / node() / "user" / "TEST" / "scans"
37+
Path("//isis.cclrc.ac.uk/inst$") / node() / "user" / "bluesky_scans"
3838
if output_dir_env is None
3939
else Path(output_dir_env)
4040
)

0 commit comments

Comments
 (0)