Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
bliss
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
523
Issues
523
List
Boards
Labels
Service Desk
Milestones
Jira
Jira
Merge Requests
123
Merge Requests
123
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Bliss
bliss
Commits
39f2cc26
Commit
39f2cc26
authored
Feb 12, 2020
by
Matias Guijarro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
data policy: do not enable ESRF data policy if no scan saving class is specified in config.
parent
124293cf
Pipeline
#21137
failed with stages
in 42 minutes and 2 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
bliss/common/session.py
bliss/common/session.py
+1
-1
No files found.
bliss/common/session.py
View file @
39f2cc26
...
...
@@ -433,7 +433,7 @@ class Session:
env_dict
[
"load_script"
]
=
self
.
load_script
scan_saving_config
=
self
.
config
.
root
.
get
(
"scan_saving"
,
{})
scan_saving_class_name
=
scan_saving_config
.
get
(
"class"
,
"ESRFScanSaving"
)
scan_saving_class_name
=
scan_saving_config
.
get
(
"class"
)
scan_saving_class
=
getattr
(
scan_saving
,
scan_saving_class_name
)
self
.
_set_scan_saving_class
(
scan_saving_class
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment