Jon Hoffman

Results 39 comments of Jon Hoffman

@dennyglee I see that you have `CLONE` support as a Q3 priority. I'm wondering if that's still on track? and is the goal to fully migrate the closed source databricks...

Thanks @Nabellaleen Those approaches seem inline with what we'd like to do. Our goals: 1. prevent new columns added to a SQLAlchemy model from leaking into the GraphQL schema (by...

Hi, sorry for late reply. Is this limitation preventing you from implementing some functionality? or is this a style preference?

Hi Marcin, `execute` delegates to the `exec` method which you can use instead and it takes a `(Int, Map[String, IndexedSeq[String]], InputStream) => T` The first param is the resultCode and...

Thanks, I can see how this may be a problem. Do you have a reproduction test case and proposed fix? I'm happy to take PRs. Maybe something like this on...

I think it is probably being cached if the server supports keep-alive. See the sun implementation notes from java6: http://docs.oracle.com/javase/6/docs/technotes/guides/net/http-keepalive.html Looks like setting "connection: close" in the request header should...

Did that work for you?

`Http(url).postForm.params(...).method("PATCH").asString` should work for you. The order of operations is important here-- `method` needs to be after `postForm`

hi, i'm not sure, could you send a code example for the request your making? also, a public authenticated proxy or explanation of how to create one would be helpful...