Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use Connection.requester and rename req to request for clarity #158

Merged
merged 1 commit into from
Sep 2, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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