Peter Saxton
Peter Saxton
Doesn't the line below the one you linked to recall the `headers` function but with method set to `nil` so that it goes on to check the requests origin here....
Ahh yes I see. Same check as is found here https://github.com/mschae/cors_plug/blob/1ca97ed844b200f97bc54df83426815854d1235d/lib/cors_plug.ex#L74 Could you add a test case that fails because of how it is currently set up. Then we can...
Always approve more clarity in the docs :whale:
Did you want to add anything to the docs for this?
@walkr `rescue` has to be chosen from one of the reserved words that can be used in do/end blocks https://github.com/elixir-lang/elixir/blob/master/lib/elixir/pages/Syntax%20Reference.md However if there is anything you think could be clearer...
Thoughts: 1. Fair enough, I'm not sure if it requires a 3.0 as it is just getting more permissive, but might break dialyzer specs so probably 3.0 2. Not so...
On further investigation I am suspicious that the reason for this problem is that the files were uploaded without the correct mime type. Looking at this [line](https://github.com/stavro/arc/blob/24896a358003dea3b1452a9a1c560e3b8f03fde8/lib/arc/storage/s3.ex#L41) I don't think...
@sobolevn did you ask if ex_aws could make the functionality public?
I found this issue and it made me smile. I would like to add a :+1: and :whale:
```rust type ChildSpec(m) { Permanent(Run(m, Never), List(SpawnOptions)) Transient(Run(m, Nil)) Temporary(Run(m, Nil)) } ``` `Never` type is just an unrepresentable type that indicates this run function is expected to never finish....