-
Notifications
You must be signed in to change notification settings - Fork 3
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
Bugfix/45 java gateway error #48
Conversation
d4bc409
to
9b00420
Compare
@zhukovgreen, it is strange that lint fails on files that @ValeriiKhalimendik hasn't changed. |
Maybe @ValeriiKhalimendik just didn't install the pre-commit hooks, in this case, git commit won't run them. To install git hooks you need to: pre-commit install --install-hooks |
…rtedFileSystemException: No FileSystem for scheme "C"
a5e7e7a
to
ac6fc16
Compare
Some of the errors in mypy hook were simply ignored, this required further investigation
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.
I'd like to ask you to move the fix_uri_scheme_availability
feature to a separate MR. It is adding additional complexity now and out of the scope of this MR. I am pretty sure it will be easier to have it apart.
PLease ignore my comments about this function. They are incomplete.
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.
Just a follow up on fixing URI for your MR to it
@@ -52,10 +55,25 @@ def get_fs_from_uri(self, uri: str) -> "_FileSystem": | |||
object (i.e. S3FileSystem, LocalFileSystem etc.) | |||
""" | |||
return self.FileSystem.get( | |||
self.URI(uri), | |||
self.URI(self.fix_uri_scheme_availability(uri)), |
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.
We are expecting the properly formatted uri at this place. The postprocessing of the config input is happening here https://github.com/AbsaOSS/pramen/blob/main/pramen-py/src/pramen_py/models/__init__.py#L73-L83.
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.
Good idea. But let's do it in a different PR.
Please, insert the license to
Interestingly, I can add a comment to an empty file 😆 |
4974695
to
592b2a0
Compare
592b2a0
to
5931a34
Compare
No description provided.