-
Notifications
You must be signed in to change notification settings - Fork 388
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
Generate report hash fix #1235
Generate report hash fix #1235
Conversation
@@ -1987,7 +1987,7 @@ def massStoreRun(self, name, tag, version, b64zip, force): | |||
# second time here. Use re-use the |
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.
Where is the first plist parse? Shouldn't that be updated too? Or the comment is outdated?
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 first plist parse is at the client side. We don't have to update those too.
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.
In that case this comment is outdated here right? We can not reuse the results from the client side.
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.
LG!
@@ -102,8 +103,12 @@ def parse_plist(path): | |||
|
|||
# We need to extend information for plist files generated | |||
# by older clang version (before 3.8). | |||
file_path = files[diag['location']['file']] | |||
if source_root is not 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.
if x is not None
can be replaced with if x
if source_root
isn't a boolean.
12996a5
to
9f1999e
Compare
@@ -1987,7 +1987,7 @@ def massStoreRun(self, name, tag, version, b64zip, force): | |||
# second time here. Use re-use the |
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.
In that case this comment is outdated here right? We can not reuse the results from the client side.
Use files from the zip to generate report hash in case of storing run.
9f1999e
to
f6a67dd
Compare
Use files from the zip to generate report hash in case of storing run.