-
-
Notifications
You must be signed in to change notification settings - Fork 46
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
Raise File.Error exception on non existing file #143
Raise File.Error exception on non existing file #143
Conversation
Thanks for this. It does solve the issue at hand. However, File.read() also returns other tuples. So maybe there's other cases to deal with at some point. But this solves already the most common one. Hmm... you should not have such a hard time with the pipeline. Let me fix that on develop branch so you can rebase. |
Hey, i thought about the other tuples but i was not sure if |
You can rebase now and pipeline should be fine. |
|
What if in Also see File.read! |
|
If we turn the |
@@ -17,6 +17,18 @@ defmodule K8s.Client.DynamicHTTPProvider do | |||
defdelegate headers(method, request_options), to: K8s.Client.HTTPProvider | |||
|
|||
@impl true | |||
@spec handle_response( |
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.
This is unrelated and should not be necessary now... right?
refs #137