-
Notifications
You must be signed in to change notification settings - Fork 13
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
remove unneeded Scope requirement in FtpAccessors #353
Conversation
Thanks again for your MR ! and catching to close the inputstream :) |
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.
only small comment regarding downgrading actions/checkout
version
Thanks for the review, @regis-leray. That file you asked about is auto-generated by |
@mberndt123 you can merge |
I can't merge that, I don't have the required permissions. Can you do that for me? |
zio-ftp opens some streams to upload files, but it doesn't close them and thus leaks the
Scope
requirement. There's no reason to keep these streams open after uploading has completed, so let's just close them and remove theScope
requirement.