Skip to content

Commit 73d5a82

Browse files
Revert "updated FQDN's to googleapis.com with a trailing dot (#2214)" (#2283)
This reverts commit 13d4ed5.
1 parent 187eb8b commit 73d5a82

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

handwritten/error-reporting/src/google-apis/auth-client.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ var isString = is.string;
2727
var SCOPES = ['https://www.googleapis.com/auth/cloud-platform'];
2828

2929
/* @const {String} Base Error Reporting API */
30-
var API = 'https://clouderrorreporting.googleapis.com./v1beta1/projects';
30+
var API = 'https://clouderrorreporting.googleapis.com/v1beta1/projects';
3131

3232
/**
3333
* The RequestHandler constructor initializes several properties on the
@@ -90,7 +90,7 @@ class RequestHandler extends common.Service {
9090
var pid = config.getProjectId();
9191
super({
9292
packageJson: pkg,
93-
baseUrl: 'https://clouderrorreporting.googleapis.com./v1beta1/',
93+
baseUrl: 'https://clouderrorreporting.googleapis.com/v1beta1/',
9494
scopes: SCOPES,
9595
projectId: pid !== null ? pid : undefined,
9696
projectIdRequired: true

handwritten/error-reporting/system-test/testAuthClient.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ describe('Request/Response lifecycle mocking', function() {
135135
beforeEach(function() {
136136
env.setProjectId().setKeyFilename().setProduction();
137137
fakeService = nock(
138-
'https://clouderrorreporting.googleapis.com./v1beta1/projects/' +
138+
'https://clouderrorreporting.googleapis.com/v1beta1/projects/' +
139139
process.env.GCLOUD_PROJECT
140140
).persist().post('/events:report');
141141
logger = createLogger({logLevel: 5});
@@ -429,4 +429,4 @@ describe('error-reporting', function() {
429429
}, TIMEOUT);
430430
});
431431
});
432-
});
432+
});

0 commit comments

Comments
 (0)