Skip to content

Commit

Permalink
Merge pull request #158 from ryanseys/use-requester
Browse files Browse the repository at this point in the history
Use Connection.requester and rename req to request for clarity
  • Loading branch information
Burcu Dogan committed Sep 2, 2014
2 parents 0f618d2 + c9f7ce4 commit 436b90c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/common/connection.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ var events = require('events');
var fs = require('fs');
var GAPIToken = require('gapitoken');
var nodeutil = require('util');
var req = require('request');
var request = require('request');

/** @type {module:common/util} */
var util = require('./util');
Expand Down Expand Up @@ -151,7 +151,7 @@ Connection.prototype.fetchToken = function(callback) {
var that = this;
if (!this.opts.keyFilename && !this.credentials) {
// We should be on GCE, try to retrieve token from the metadata server.
req({
this.requester({
method: 'get',
uri: METADATA_TOKEN_URL,
headers: {
Expand Down Expand Up @@ -274,7 +274,7 @@ Connection.prototype.createAuthorizedReq = function(reqOpts, callback) {
/**
* The default requester.
*/
Connection.prototype.requester = req;
Connection.prototype.requester = request;

/**
* Get the status of the connection.
Expand Down

0 comments on commit 436b90c

Please sign in to comment.