Skip to content
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

daf_persistence: make Butler.datasetExists work with composite datasets #62

Merged
merged 2 commits into from Jun 29, 2017

Conversation

n8pease
Copy link
Contributor

@n8pease n8pease commented Jun 27, 2017

No description provided.

if isinstance(location, ButlerComposite):
for name, componentInfo in location.componentInfo.items():
if componentInfo.subset:
subset = self.subset(datasetType=componentInfo.datasetType, dataId=location.dataId)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PEP8: line above is too long - consider moving dataId... to next line.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we allow 110, this is 104.

location = None

return bool(location)
exists = self.datasetExists(componentInfo.datasetType, location.dataId)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PEP8: line above too long.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The indentation looks odd. I believe that we are sticking to the 110 line limit; how long is this one?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@RobertLuptonTheGood are you reading the code on the Conversation tab? ...Don't compare the red indentation to the green indentation. If you look at this line under View Changes you'll see the indentation is correct.
@kennywlo the line is 92 columns, < 110.

if location and location.repository.exists(location):
break
exists = None
if isinstance(location, ButlerComposite):

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I find ambiguity in the name "ButlerComposite" and its relation to location in the comparison, especially the first part "Butler", in the local context - a comment would help.


return bool(location)
exists = self.datasetExists(componentInfo.datasetType, location.dataId)
if exists is False:

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggestion: if not exists:

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've been shot down for that before; "the double negative is hard to parse"

location = repoData.repo.map(datasetType, dataId)
if location and location.repository.exists(location):
break
exists = None

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggestion: exists = False (given exists being boolean)

Copy link

@kennywlo kennywlo left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See comments inline.

@n8pease
Copy link
Contributor Author

n8pease commented Jun 29, 2017

@kennywlo Please re-review the changes under the latest commit.

Copy link

@kennywlo kennywlo left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looking good.

Copy link

@kennywlo kennywlo left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looking good.

@n8pease n8pease merged commit 52d2432 into master Jun 29, 2017
@ktlim ktlim deleted the tickets/DM-11033 branch August 25, 2018 06:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants