-
Notifications
You must be signed in to change notification settings - Fork 50
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
fix autogen cmd #444
base: dev
Are you sure you want to change the base?
fix autogen cmd #444
Conversation
@@ -86,7 +86,7 @@ def tags(self): | |||
self._tags = self._parse_readme_input_file_tags() | |||
return self._tags | |||
|
|||
def _parse_readme_input_file_tags(self): | |||
def _parse_readme_input_file_tags_v0(self): |
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.
Please clean up the un used code
if self.is_in_memory: | ||
return None | ||
assert not self.is_in_memory |
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.
There must be some internal bugs, because the old code add assert below to guarantee it's not in memory . Could you find the reason why it's in memory.
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.
is_in_memory
is true when the ws does not get saved in file system, (for cmd aaz-dev command-model generate-from-swagger
), so it cannot be loaded from memory either.
test cmd: