John
John
Just a thought, but I'd find it really useful to have a version of the example app that was easy to get running locally w/ a postgres event store. Going...
```yaml components: schemas: CommonParent: type: object required: - myval properties: myval: type: string SearchResponse: type: object properties: data: type: array items: allOf: - $ref: "#/components/schemas/CommonParent" - type: object properties: uri:...
A quick test using this: ```yaml components: schemas: CommonParent: type: object required: - myval properties: myval: type: string SearchResponse: type: object required: - data properties: data: type: array items: type:...
Looks like there's some weirdness around the OpenAPI spec and `nullable` https://github.com/OAI/OpenAPI-Specification/issues/1368#issuecomment-580290441 I might be wrong but it looks like the correct spec required in order to generate the code...
Would adding `response` to the s3 options also enable support for setting response headers using: ``` integration.response.header.cache-control ```
> That said, I'd be open to changing the standard name that is used in all Rush repos, if it's a significant improvement. This could be a fairly disruptive change...
I'm also running into this same issue, I'm using `saml2aws` as the credential-process config ``` [profile acc-name-Admin] region = ap-southeast-2 credential_process = saml2aws login --profile=acc-name-Admin --role=arn:aws:iam::XXXXX:role/Admin --credential-process --skip-prompt ``` When...
This was added to buildah/podman 2+ years ago, it's pretty unfortunate the version of buildah is so our of date https://github.com/containers/podman/issues/12062#issuecomment-950584529 https://github.com/containers/buildah/pull/3574
I ran into issues when trying to use this, because it seems like the CLI isn't always omitting log entries from stdout when using the `--quiet` flag. ~I wonder if...
@StevenACoffman I haven't forgotten about this, you make a good point about examples... I might actually add some more tests cases to this PR that would also help somewhat in...