[devel] Add option to dirac-dms-add-transformation
In order to find out from the production request DB which processing passes are active, and thus try and launch only the relevant replications, add an option --MCVersion
that can take the following values:
- "All": all numerical values of the MCVersion (i.e. the ConfigVersion of the BK) are considered
- Any numerical value or comma-separated list of values (e.g.
--MCVersion 2011,2012
)
It forces the option --Unique
in order to not re-launch an already existing replication
The other options can be used like --Start
, --ListProcessingPasses
or --Test
===========
Fix getSEStorageSpace() as the DB content was changed and token
is now seName
Edited by Philippe Charpentier
Merge request reports
Activity
added 17 commits
- 5de1d64d - allow int and long types
- b7c0df35 - disabling -e momentarily
- e604cfbd - source LHCbDIRAC not lb-run
- e210910e - allow int and long
- c1078f61 - added log
- 6a2cf4cb - importing ROOT in different environment
- e4e197e1 - DecFiles -> Gen/DecFiles
- 2cfdb3c8 - splitting log messages
- 725f592b - adding a re-run with --debug option in case of lb-run specific error
- e9a9277e - fixing the versions of LbEnv and LbPlatformUtils
- 9f533708 - better code
- fee8ab4b - using variables instead of hardocding
- d1192284 - Merge branch 'devel_branch' into 'devel'
- cf0b92f9 - Merge branch 'v9r3-fixes17' into 'devel'
- 3359ffd3 - Merge branch 'devel-PhC-190305' into 'devel'
- 9be8bc5e - v9r3-pre20
- 32a1e09a - Add option to add-transformation to get processing passes from the
Toggle commit listadded To be reviewed label
assigned to @chaen
- Resolved by Philippe Charpentier
added Review OK label and removed To be reviewed label
added 5 commits
-
722716fd...3785e17f - 2 commits from branch
lhcb-dirac:devel
- 7bda870f - Add option to add-transformation to get processing passes from the
- 46f0c2c2 - typo
- dcdd737d - Fix token occupancy as token is now SE name
Toggle commit list-
722716fd...3785e17f - 2 commits from branch
added To be reviewed label and removed Review OK label
406 406 407 407 """ 408 408 409 # Given a SE, we need to find its endpoint 410 endpoint = CSHelpers.getStorageElementEndpoint(seName) 411 if not endpoint['OK']: 412 return endpoint 413 endpoint = endpoint['Value'] 414 415 spaceToken = CSHelpers.getSEToken(seName) 416 if not spaceToken['OK']: 417 return spaceToken 418 spaceToken = spaceToken['Value'] 419 420 res = self.selectSpaceTokenOccupancyCache(endpoint, spaceToken) 409 # FIXME: The DB contains the SE name as token... This is dirty but mandatory
Please register or sign in to reply