david-perez

Results 60 issues of david-perez

Thanks for this useful plugin and your talk in VimConf. I see that the `distant` binary [has support for setting `identity_files`](https://github.com/chipsenkbeil/distant/blob/0f56669ccd386ece67e3da4560e16cbd79b6d8ef/distant-ssh2/src/lib.rs#L60). However, I can't figure out what to feed the...

bug

`YmxvYg=` is technically invalid base64 according to the spec (its Unicode code point length is not divisible by 4, it's missing a padding character), but this crate is able to...

We discovered in https://github.com/awslabs/smithy-rs/pull/1708 that at least the following 36 `@httpRequestTests` (what follows are their `id`s) from [the AWS JSON 1.1. test suite](https://github.com/awslabs/smithy/blob/2bc09aac27ff8d4381e47898dc2be5234f0f50dc/smithy-aws-protocol-tests/model/awsJson1_1/main.smithy#L20) are invalid because they are missing the...

bug

The protocol test [`RestJsonNoInputAllowsAccept`](https://github.com/awslabs/smithy/blob/14e6dce9f2d21075dcc0d827166eec63b692609e/smithy-aws-protocol-tests/model/restJson1/empty-input-output.smithy#L33-L33) caught my eye. 1. Where in the Smithy spec is it specified how servers should handle this header? 1. Should _restJson1_ servers reject requests if they...

guidance
documentation

Consider [this protocol test](https://github.com/awslabs/smithy/blob/cec9352724a82e6b0842c00563662e870d0070b4/smithy-aws-protocol-tests/model/restJson1/http-content-type.smithy#L139-L157): ``` { id: "RestJsonHttpWithHeadersButNoPayload", documentation: "Serializes an request with header members but no payload", protocol: restJson1, method: "POST", uri: "/payload", body: "{}", bodyMediaType: "application/json", headers: {...

guidance
documentation

Since `enum` is a constraint trait, if a server encounters an unknown enum variant, it should reject the request just like it would fail to constrain any other value for...

guidance

What should a server do upon receiving a streaming blob that does not satisfy the modeled constraint traits? Currently, the only allowed constraint trait on the `blob` shape is the...

guidance
documentation

What should a server do upon receiving an event message in an event stream that does not satisfy the modeled constraint traits? For example, with the following model, say a...

guidance
documentation

[Link](https://awslabs.github.io/smithy/2.0/spec/streaming.html#data-streams). Example as of writing: ``` operation StreamingOperation { input: StreamingOperationInput output: StreamingOperationOutput } @input structure StreamingOperationInput {} @output structure StreamingOperationOutput { @required streamId: String output: StreamingBlob } @streaming blob...

documentation

This is a feature request. When referencing parts of the spec (with colleagues, or in smithy-rs), I'd often like to link to more specific parts of the documentation. For example,...

documentation