We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab07761 commit 6cd9e3bCopy full SHA for 6cd9e3b
.github/workflows/integration-tests.yml
@@ -157,4 +157,4 @@ jobs:
157
go-version: ${{ inputs.go-version }}
158
159
- name: run share tests
160
- run: make test-integration SHORT=true TAGS=share
+ run: make test-integration SHORT=true TAGS=share
share/shwap/sample.go
@@ -102,7 +102,11 @@ func (s *Sample) UnmarshalJSON(data []byte) error {
102
if err != nil {
103
return err
104
}
105
+
106
sample, err := SampleFromProto(&ss)
107
+ if err != nil {
108
+ return err
109
+ }
110
*s = sample
111
return nil
112
0 commit comments