You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I tried to put some none-nil byte array to the second parameter, the program would always fail. Until I see your example in one file, I realize that the second parameter should be nil. Please update README.
In section
Partial Decoding
, there is one line which could not run correctly.decoder := thrifter.NewDecoder(reader)
should be
decoder := thrifter.NewDecoder(reader, nil)
The text was updated successfully, but these errors were encountered: