Wayne Robinson
Wayne Robinson
It looks like the value of the content type overrides the format. See https://github.com/ruby-grape/grape/blob/02d7113d09eb9fcb4264c841d1fdd305e3e8adb5/lib/grape/middleware/formatter.rb#L55-L58 I'm not sure what the safest way is to reverse this? Could it literally just be...
If this test shows the intended behaviour, I don't think we'll be able to override the output by just changing the order the `api_format` is looked up in. https://github.com/ruby-grape/grape/blob/7741f022b5928f0ddcee27de08555d95ea4556f8/spec/grape/api_spec.rb#L3732-L3739 If...
Yeah. Our use case is similar. We have cached data that's already JSON that we'd like to just return vs having to parse and re-encode. I'll take a look at...
We're still using Her/Faraday and recently switched to Puma for all our servers and have started running into deadlock issues. I'm surprised I haven't seen anything about Faraday and thread-safety...
Even with `platform.runtimeDone` the logs don't get sent to the extension until the `next` call in a subsequent (not always the next) execution of the function. So you're waiting until...
I agree with @panva, most systems (outside of open banking) issue permanent grants until they're revoked by the user. We'd use `Infinity`, but `checkTTL()`'s use of `Number.isSafeInteger(value)` returns `false` for...
That sounds like a really great start, thanks for that.
I'm also getting this on deploy. Not sure if anything has changed here but it seems that `autoscaling:CreateLaunchConfiguration` needs some specific extra EC2 permissions to execute that don't seem to...
I also can't seem to work out a way to override that policy as the custom CloudFormation templates attempt to append the extra policies to the existing array and I...
By the way, in case it's relevant, I'm using version `1.5.11-develop` (because of some other errors that the current stable version didn't seem to be working with).