Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
BB2ETP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jonas Eppelt
BB2ETP
Merge requests
!8
Move mixture nominal to grid
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Move mixture nominal to grid
move_mixture_nominal_to_grid
into
toml
Overview
0
Commits
3
Pipelines
0
Changes
2
Merged
Jonas Eppelt
requested to merge
move_mixture_nominal_to_grid
into
toml
5 months ago
Overview
0
Commits
3
Pipelines
0
Changes
2
Expand
0
0
Merge request reports
Compare
toml
version 1
1e5ec332
5 months ago
toml (base)
and
latest version
latest version
48697d84
3 commits,
5 months ago
version 1
1e5ec332
2 commits,
5 months ago
2 files
+
67444
−
67454
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
bb2etp.py
+
1
−
1
Options
@@ -208,7 +208,7 @@ class BeambackgroundMetadata:
'''
assert
self
.
on_etp
,
"
Executions does not seem to be on ETP. Ceph paths are not accessible.
"
assert
self
.
ceph_path
is
not
None
,
"
ceph_paths is None. Please set the paths.
"
assert
(
os
.
path
.
exists
(
self
.
ceph_path
)
and
os
.
path
.
isdir
(
self
.
ceph_path
)),
f
"
The path
'
{
self
.
ceph_path
}
'
does not exist or is not a directory.
"
#
assert (os.path.exists(self.ceph_path) and os.path.isdir(self.ceph_path)), f"The path '{self.ceph_path}' does not exist or is not a directory."
assert
self
.
has_certificate
,
"
No certificate found. Please set X509_USER_PROXY.
"
from
XRootD
import
client
client
=
client
.
FileSystem
(
self
.
gridka_server
)
Loading