Matthew Dowdell

Results 5 comments of Matthew Dowdell

It appears to be something in bravado-core that controls/expects this behaviour. When a file is added, the content-type is checked within the `add_file` function https://github.com/Yelp/bravado-core/blob/3f04ce5d9f5fa8deeff7f76f1f9025e5dd30e888/bravado_core/param.py#L319. I think it may be...

[Timestamp in MariaDB](https://mariadb.com/kb/en/timestamp/) is stored as seconds since the Unix epoch in UTC. [Timestamp in PostgreSQL](https://www.postgresql.org/docs/current/datatype-datetime.html) can be made timezone aware, although your example is not. Perhaps try using `timestamp...

Sure: ``` from jenkinsapi.jenkins import Jenkins jenkins_url = 'https://example.org/jenkins' jenkins = Jenkins(jenkins_url, ssl_verify=False) print([x for x in jenkins.get_jobs()]) # this is where I see the exception job = jenkins[job_name] ```...

@jhump thanks for the thoughtful response. Regarding your proposal to wrap the validator for error transformation, I'm a little confused how you would differentiate between a request a response message....

@jhump I observed this in a UnaryRPC. A unary interceptor seems to get a `context.Context` and a `connect.AnyRequest` (see https://pkg.go.dev/connectrpc.com/connect#Interceptor and https://pkg.go.dev/connectrpc.com/connect#UnaryFunc). The latter provides access to both `connect.Peer` and...