Skip to content

Commit

Permalink
Fix the ordering of x-goog-api-client info (#2037)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmuk authored and sofisl committed Oct 13, 2022
1 parent a7e623a commit 51716f4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,13 @@ function LanguageServiceClient(gaxGrpc, grpcClients, opts) {
}, opts);

var googleApiClient = [
'gl-node/' + process.versions.node,
CODE_GEN_NAME_VERSION
'gl-node/' + process.versions.node
];
if (opts.libName && opts.libVersion) {
googleApiClient.push(opts.libName + '/' + opts.libVersion);
}
googleApiClient.push(
CODE_GEN_NAME_VERSION,
'gax/' + gax.version,
'grpc/' + gaxGrpc.grpcVersion
);
Expand Down

0 comments on commit 51716f4

Please sign in to comment.