-
Notifications
You must be signed in to change notification settings - Fork 135
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Alfoa/issue780 ls #781
Alfoa/issue780 ls #781
Conversation
@@ -186,7 +186,12 @@ def addGroup(self,rlz): | |||
@ Out, None | |||
""" | |||
parentID = rlz.get("RAVEN_parentID",[None])[0] | |||
groupName = str(rlz.get("prefix")[0] if not isinstance(rlz.get("prefix"),basestring) else rlz.get("prefix")) | |||
prefix = rlz.get("prefix") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The issue in #780 complains that rlz
is None, the changes here did not reflect this. Could you explain it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure. The issue reports a failure in the following line:
groupName = str(rlz.get("prefix")[0] if not isinstance(rlz.get("prefix"),basestring) else rlz.get("prefix"))
The reason was that since some of the adaptive samplers/optimizers construct a solution export DataObject without a prefix for each realization, the rlz.get("prefix")
was returning None (not found keyword "prefix"). Now since the old machine was either expecting the prefix to be a string (basestring
) or a list, it was falling in the "not string case" so trying to access to rlz.get("prefix")[0]
but the ruturn case was not a string not because it was a list but because it was None.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Got it. Thanks.
Job Test CentOS 6 on 0c91776 : invalidated by @msgambati-INL Testing new module only install with MOOSE_JOBS variable configured |
Job Test CentOS 6 on 0c91776 : invalidated by @msgambati-INL Testing new module only install with MOOSE_JOBS variable configured |
2 similar comments
Job Test CentOS 6 on 0c91776 : invalidated by @msgambati-INL Testing new module only install with MOOSE_JOBS variable configured |
Job Test CentOS 6 on 0c91776 : invalidated by @msgambati-INL Testing new module only install with MOOSE_JOBS variable configured |
Job Test CentOS 6 on 0c91776 : invalidated by @msgambati-INL Testing new module only install with MOOSE_JOBS variable configured after private key fix |
2 similar comments
Job Test CentOS 6 on 0c91776 : invalidated by @msgambati-INL Testing new module only install with MOOSE_JOBS variable configured after private key fix |
Job Test CentOS 6 on 0c91776 : invalidated by @msgambati-INL Testing new module only install with MOOSE_JOBS variable configured after private key fix |
Job Test CentOS 6 on 0c91776 : invalidated by @msgambati-INL Testing new module only install with MOOSE_JOBS variable configured after private key fix and new GNU compilers installed |
Job Test CentOS 7 on 0c91776 : invalidated by @msgambati-INL Testing new module only install with MOOSE_JOBS variable configured after private key fix |
Job Test Fedora 27 on 0c91776 : invalidated by @msgambati-INL Testing new module only install with MOOSE_JOBS variable configured after private key fix |
1 similar comment
Job Test Fedora 27 on 0c91776 : invalidated by @msgambati-INL Testing new module only install with MOOSE_JOBS variable configured after private key fix |
Job Test Fedora 28 on 0c91776 : invalidated by @msgambati-INL Testing new module only install with MOOSE_JOBS variable configured after private key fix |
Job Test OpenSUSE Leap 15 on 0c91776 : invalidated by @msgambati-INL Testing new module only install with MOOSE_JOBS variable configured after private key fix |
Job Test Ubuntu 16 on 0c91776 : invalidated by @msgambati-INL Testing new module only install with MOOSE_JOBS variable configured after private key fix |
Job Test Ubuntu 18 on 0c91776 : invalidated by @msgambati-INL Testing new module only install with MOOSE_JOBS variable configured after private key fix |
Everything is good, except Test OpenSUSE Leap 42 and Test OpenSUSE Tumbleweed. |
Job Test CentOS 6 on 0c91776 : invalidated by @msgambati-INL Testing new civet recipes with plugins removed |
Job Test CentOS 7 on 0c91776 : invalidated by @msgambati-INL Testing new civet recipes with plugins removed |
Job Test Fedora 27 on 0c91776 : invalidated by @msgambati-INL Testing new civet recipes with plugins removed |
Job Test Fedora 28 on 0c91776 : invalidated by @msgambati-INL Testing new civet recipes with plugins removed |
Job Test OpenSUSE Leap 15 on 0c91776 : invalidated by @msgambati-INL Testing new civet recipes with plugins removed |
Job Test Ubuntu 16 on 0c91776 : invalidated by @msgambati-INL Testing new civet recipes with plugins removed |
Job Test Ubuntu 18 on 0c91776 : invalidated by @msgambati-INL Testing new civet recipes with plugins removed |
Job Test CentOS 6 on 0c91776 : invalidated by @msgambati-INL Testing new civet recipes with plugins removed - try 2 |
Job Test CentOS 6 on 0c91776 : invalidated by @msgambati-INL Testing new civet recipes with plugins removed - try 3 |
Job Test CentOS 6 on 0c91776 : invalidated by @msgambati-INL Testing new civet recipes with plugins removed - try 4 |
Job Test CentOS 6 on 0c91776 : invalidated by @msgambati-INL Testing new civet recipes with plugins removed - try 5 |
Job Test CentOS 6 on 0c91776 : invalidated by @msgambati-INL Testing new civet recipes with plugins removed - try 6 |
Job Test CentOS 6 on 0c91776 : invalidated by @msgambati-INL Testing new civet recipes with plugins removed - try 7 |
Job Test CentOS 6 on 0c91776 : invalidated by @msgambati-INL Testing new civet recipes with plugins removed - tweaking .bash_profile |
Job Test CentOS 6 on 0c91776 : invalidated by @msgambati-INL Testing changing recipe back to one with plugins sections |
Job Test CentOS 6 on 0c91776 : invalidated by @msgambati-INL Removed sections again and enabled allowed_to_fail |
Pull Request Description
What issue does this change request address? (Use "#" before the issue to link it, i.e., #42.)
Closes #780
What are the significant changes in functionality due to this change request?
Just restoring the old functionality of assigning an arbitrary group name in case the prefix is not passed to the HDF5
For Change Control Board: Change Request Review
The following review must be completed by an authorized member of the Change Control Board.
<internalParallel>
to True.