File tree 1 file changed +2
-2
lines changed
src/test/java/com/google/devtools/build/lib/remote 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 39
39
import build .bazel .remote .execution .v2 .Tree ;
40
40
import build .bazel .remote .execution .v2 .UpdateActionResultRequest ;
41
41
import com .google .api .client .json .GenericJson ;
42
- import com .google .api .client .json .jackson2 . JacksonFactory ;
42
+ import com .google .api .client .json .gson . GsonFactory ;
43
43
import com .google .bytestream .ByteStreamGrpc .ByteStreamImplBase ;
44
44
import com .google .bytestream .ByteStreamProto .QueryWriteStatusRequest ;
45
45
import com .google .bytestream .ByteStreamProto .QueryWriteStatusResponse ;
@@ -213,7 +213,7 @@ protected GrpcCacheClient newClient(
213
213
json .put ("client_secret" , "foo" );
214
214
json .put ("refresh_token" , "bar" );
215
215
Scratch scratch = new Scratch ();
216
- scratch .file (authTlsOptions .googleCredentials , new JacksonFactory ().toString (json ));
216
+ scratch .file (authTlsOptions .googleCredentials , new GsonFactory ().toString (json ));
217
217
218
218
CallCredentialsProvider callCredentialsProvider ;
219
219
try (InputStream in = scratch .resolve (authTlsOptions .googleCredentials ).getInputStream ()) {
You can’t perform that action at this time.
0 commit comments