File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 77 strategy :
88 matrix :
99 include :
10- - go : ' 1.19.x '
10+ - go : " stable "
1111 os : ubuntu-latest
1212 canonical : true
13- - go : ' 1.19.x '
13+ - go : " stable "
1414 os : windows-latest
1515 canonical : false
1616
2929 with :
3030 go-version : ${{matrix.go}}
3131
32-
3332 - name : Install deps
3433 shell : bash --noprofile --norc -x -eo pipefail {0}
3534 run : |
Original file line number Diff line number Diff line change @@ -241,6 +241,7 @@ type Account struct {
241241 Mappings Mapping `json:"mappings,omitempty"`
242242 Authorization ExternalAuthorization `json:"authorization,omitempty"`
243243 Trace * MsgTrace `json:"trace,omitempty"`
244+ ClusterTraffic string `json:"cluster_traffic,omitempty"`
244245 Info
245246 GenericFields
246247}
Original file line number Diff line number Diff line change @@ -309,7 +309,7 @@ func (l *Limits) Validate(vr *ValidationResults) {
309309 }
310310 }
311311
312- if l . Times != nil && len (l .Times ) > 0 {
312+ if len (l .Times ) > 0 {
313313 for _ , t := range l .Times {
314314 t .Validate (vr )
315315 }
Original file line number Diff line number Diff line change @@ -197,7 +197,7 @@ func (l *Limits) Validate(vr *ValidationResults) {
197197 }
198198 }
199199
200- if l . Times != nil && len (l .Times ) > 0 {
200+ if len (l .Times ) > 0 {
201201 for _ , t := range l .Times {
202202 t .Validate (vr )
203203 }
You can’t perform that action at this time.
0 commit comments