Skip to content

Commit 373d1da

Browse files
yoshi-automationchingor13
authored andcommitted
---
yaml --- r: 12261 b: refs/heads/autosynth-redis c: 73de5eb h: refs/heads/master i: 12259: 5cdd8c5
1 parent 182d8c7 commit 373d1da

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ refs/heads/autosynth-iot: 9d732be07d99843d8cb53d34ec0837328a807fce
137137
refs/heads/autosynth-kms: dcc6e15d68759010c8735cc868135bd7e6c1cc5f
138138
refs/heads/autosynth-language: 8972866b016473559702424205ce5569de47b34d
139139
refs/heads/autosynth-os-login: daa910328b954bbe87068f684a3088ed910f1ddf
140-
refs/heads/autosynth-redis: 8d32ef88e0d51e0f7791931bbf1c45e7dec90e14
140+
refs/heads/autosynth-redis: 73de5eba2d8943246590b7db805c2a2bc1a68986
141141
refs/heads/autosynth-scheduler: 22f042c3461cee9346c46fdade5c8fad1a80f431
142142
refs/heads/autosynth-securitycenter: 1b300406bfc0f022d0ae98286c419d54d08d2ad4
143143
refs/heads/autosynth-spanner: 54521ca9d598aa2a8778ee11d153da558a38834e

branches/autosynth-redis/google-cloud-clients/google-cloud-trace/src/main/java/com/google/cloud/trace/v1/stub/TraceServiceStubSettings.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,9 @@ public String extractNextToken(ListTracesResponse payload) {
217217

218218
@Override
219219
public Iterable<Trace> extractResources(ListTracesResponse payload) {
220-
return payload.getTracesList();
220+
return payload.getTracesList() != null
221+
? payload.getTracesList()
222+
: ImmutableList.<Trace>of();
221223
}
222224
};
223225

0 commit comments

Comments
 (0)