Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Gaudi
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Christoph Hasse
Gaudi
Commits
6fa523a5
Commit
6fa523a5
authored
11 years ago
by
Marco Clemencic
Browse files
Options
Downloads
Patches
Plain Diff
enable fixed 'applyConfigurableUsers()' with an environment variable
parent
1038d757
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Gaudi/doc/release.notes
+4
-0
4 additions, 0 deletions
Gaudi/doc/release.notes
Gaudi/scripts/gaudirun.py
+5
-2
5 additions, 2 deletions
Gaudi/scripts/gaudirun.py
with
9 additions
and
2 deletions
Gaudi/doc/release.notes
+
4
−
0
View file @
6fa523a5
Package : Gaudi
Package manager : Marco Clemencic
! 2014-02-10 - Marco Clemencic
- Enable the fixed 'applyConfigurableUsers()' if the environment variable
GAUDI_FIXED_APPLY_CONF is set.
! 2014-02-10 - Marco Clemencic
- Allow switching between old 'applyConfigurableUsers()' (bug #103803) and the
new one (fixed the bug, but different order of execution).
...
...
This diff is collapsed.
Click to expand it.
Gaudi/scripts/gaudirun.py
+
5
−
2
View file @
6fa523a5
...
...
@@ -136,7 +136,9 @@ if __name__ == "__main__":
parser
.
add_option
(
"
--new-conf-user-apply
"
,
action
=
"
store_false
"
,
dest
=
"
old_conf_user_apply
"
,
help
=
"
use the new (correct) logic when applying
"
"
ConfigurableUsers (fixed bug #103803)
"
)
"
ConfigurableUsers (fixed bug #103803), can be
"
"
turned on also with the environment variable
"
"
GAUDI_FIXED_APPLY_CONF
"
)
parser
.
add_option
(
"
-o
"
,
"
--output
"
,
action
=
"
store
"
,
type
=
"
string
"
,
help
=
"
dump the configuration to a file. The format of
"
"
the options is determined by the extension of the
"
...
...
@@ -183,7 +185,8 @@ if __name__ == "__main__":
profilerExtraOptions
=
''
,
preload
=
[],
ncpus
=
None
,
old_conf_user_apply
=
True
)
# the old logic can be turned off with an env variable
old_conf_user_apply
=
'
GAUDI_FIXED_APPLY_CONF
'
not
in
os
.
environ
)
# replace .qmt files in the command line with their contained args
argv
=
[]
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment