File tree 4 files changed +5
-5
lines changed
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 7
7
strategy :
8
8
matrix :
9
9
include :
10
- - go : ' 1.19.x '
10
+ - go : " stable "
11
11
os : ubuntu-latest
12
12
canonical : true
13
- - go : ' 1.19.x '
13
+ - go : " stable "
14
14
os : windows-latest
15
15
canonical : false
16
16
29
29
with :
30
30
go-version : ${{matrix.go}}
31
31
32
-
33
32
- name : Install deps
34
33
shell : bash --noprofile --norc -x -eo pipefail {0}
35
34
run : |
Original file line number Diff line number Diff line change @@ -241,6 +241,7 @@ type Account struct {
241
241
Mappings Mapping `json:"mappings,omitempty"`
242
242
Authorization ExternalAuthorization `json:"authorization,omitempty"`
243
243
Trace * MsgTrace `json:"trace,omitempty"`
244
+ ClusterTraffic string `json:"cluster_traffic,omitempty"`
244
245
Info
245
246
GenericFields
246
247
}
Original file line number Diff line number Diff line change @@ -309,7 +309,7 @@ func (l *Limits) Validate(vr *ValidationResults) {
309
309
}
310
310
}
311
311
312
- if l . Times != nil && len (l .Times ) > 0 {
312
+ if len (l .Times ) > 0 {
313
313
for _ , t := range l .Times {
314
314
t .Validate (vr )
315
315
}
Original file line number Diff line number Diff line change @@ -197,7 +197,7 @@ func (l *Limits) Validate(vr *ValidationResults) {
197
197
}
198
198
}
199
199
200
- if l . Times != nil && len (l .Times ) > 0 {
200
+ if len (l .Times ) > 0 {
201
201
for _ , t := range l .Times {
202
202
t .Validate (vr )
203
203
}
You can’t perform that action at this time.
0 commit comments