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
The decoder will fail to decode time Timestamp time.Time as time.Time. The problem is in the code that detects a time type which is too strict. We need to use reflect.CanConvert
The text was updated successfully, but these errors were encountered:
The codec does not handle types that can be converted to time.Time
correctly since it is too strict in determining what a time.Time type
is. This patch relaxes this by checking if a type can be converted to
time.Time.
Fixes#633
The decoder will fail to decode
time Timestamp time.Time
astime.Time
. The problem is in the code that detects a time type which is too strict. We need to usereflect.CanConvert
The text was updated successfully, but these errors were encountered: