Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LHCbDIRAC
Manage
Activity
Members
Labels
Plan
Issues
16
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
11
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
LHCb Dirac
LHCbDIRAC
Merge requests
!7
[v8r2] Minor fixes in TS
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
[v8r2] Minor fixes in TS
charpent/LHCbDIRAC:v8r2_PhC_160217
into
master
Overview
0
Commits
4
Pipelines
0
Changes
Merged
Philippe Charpentier
requested to merge
charpent/LHCbDIRAC:v8r2_PhC_160217
into
master
8 years ago
Overview
0
Commits
4
Pipelines
0
Changes
-
Expand
The BK path used for checking whether a dataset had been processed was incorrect (Conditions not taken into account), which made the plugin much slower. This is fixed
Additional logging in the TransformationPlugin
Add CMT directories in .gitignore
👍
0
👎
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
be1ce9b7
4 commits,
8 years ago
+
8
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
Search (e.g. *.vue) (Ctrl+P)
LHCbDIRAC/BookkeepingSystem/Client/BKQuery.py
+
1
−
1
Options
@@ -20,7 +20,7 @@ def makeBKPath( bkDict ):
path = os.path.join( '/',
bkDict.get( 'ConfigName', '' ),
bkDict.get( 'ConfigVersion', '' ),
bkDict.get( 'ConditionDescription',
'.'
),
bkDict.get( 'ConditionDescription',
bkDict.get( 'DataTakingConditions', bkDict.get( 'SimulationConditions', '.' ) )
),
bkDict.get( 'ProcessingPass', '.' )[1:],
str( bkDict.get( 'EventType', '.' ) ).replace( '90000000', '.' ),
fileType ).replace( '/.', '/' )
Loading