We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi all,
Currently, darshan-util/pydarshan/darshan/experimental/aggregators/mod_agg_iohist.py:61 checks whether 'agg_iohist' exists in self.data, but this key is never added to data.
data
The check should be if 'agg_iohist' not in self.summary.
if 'agg_iohist' not in self.summary
The text was updated successfully, but these errors were encountered:
Fix #946, check for wrong key in experimental aggregator
7326c7d
Successfully merging a pull request may close this issue.
Hi all,
Currently, darshan-util/pydarshan/darshan/experimental/aggregators/mod_agg_iohist.py:61 checks whether 'agg_iohist' exists in self.data, but this key is never added to
data
.The check should be
if 'agg_iohist' not in self.summary
.The text was updated successfully, but these errors were encountered: