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 stephenplusplus committed Mar 3, 2017
1 parent 1e3a4f7 commit 43e50cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/google-cloud-node/src/v1beta1/speech_client.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,13 @@ function SpeechClient(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 43e50cc

Please sign in to comment.