Daniel Cormier

Results 24 issues of Daniel Cormier

I've used the code in `master` ([`4850884`](https://github.com/hooklift/gowsdl/tree/4850884e63e1bcd2af7ee65699e9c436bb5595dc)) to generate golang types from WSDL. The resulting file ([ewsgen.go](https://github.com/hooklift/gowsdl/files/4182244/ewsgen.go.txt)) references some types that were not generated. Specifically, `Language` (on lines 3876 and...

There is a problem with this client that results in connection attempts failing intermittently. This is more easily reproduced by attempting to connect multiple instances of the client to a...

## Bug Report ### Version axum v0.6.0-rc.2 ### Platform Darwin 21.1.0 Darwin Kernel Version 21.1.0: Wed Oct 13 17:33:23 PDT 2021; root:xnu-8019.41.5~1/RELEASE_X86_64 x86_64 ### Description When extracting `MatchedPath` in middleware,...

C-bug
A-axum

Using `.unwrap_or(&Vec::new())` will ~allocate~ create a new `Vec` [every time the code is executed](https://doc.rust-lang.org/std/option/enum.Option.html#method.unwrap_or), whether or not the value being unwrapped is `None`. Using `.unwrap_or_default()` will only ~allocate~ create a...

Seen [here](https://news.ycombinator.com/item?id=33307059).

```go package main import ( "github.com/go-redis/redis/extra/rediscensus/v9" "github.com/go-redis/redis/v9" ) func main() { client := redis.Client{} client.AddHook(rediscensus.TracingHook{}) } ``` ## Expected Behavior `rediscensus.TracingHook` should implement `redis.Hook`. ## Current Behavior It does not....

The [`Event::TeamRename` variant](https://docs.rs/slack/0.25.0/slack/enum.Event.html#variant.TeamRename) only includes the `name` field, but [the actual event](https://api.slack.com/events/team_rename) also has the `team_id`, which is useful for knowing _which_ team was renamed. The ID field should be...

This allows more errors in crypto packages to be unwrapped so the inner error can be accessed. This should help avoid some error string comparison some consumers may currently need.

What I did: ```golang package main import ( "strings" "testing" "github.com/jhillyerd/enmime" "github.com/stretchr/testify/require" ) func TestWrongContentTransferEncoding(t *testing.T) { called := false parser := enmime.NewParser( enmime.SetReadPartErrorPolicy(func(p *enmime.Part, err error) bool { called...

- [x] I have searched open and closed issues for duplicates - [x] I am submitting a bug report for existing functionality that does not work as intended - [x]...

Acknowledged