Skip to content

Commit 5d91a23

Browse files
ericuldallcallmehiphop
authored andcommitted
updated FQDN's to googleapis.com with a trailing dot (#2214)
1 parent 5a7d37b commit 5d91a23

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/google-cloud-speech/src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ function Speech(options) {
7171
};
7272

7373
var config = {
74-
baseUrl: 'speech.googleapis.com',
74+
baseUrl: 'speech.googleapis.com.',
7575
projectIdRequired: false,
7676
service: 'speech',
7777
protoServices: {

packages/google-cloud-speech/system-test/speech.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ FILENAMES.forEach(function(filename) {
3939
name: name,
4040
path: path.join(__dirname, 'data/' + name),
4141
gcsUri: 'gs://' + BUCKET_NAME + '/' + name,
42-
httpUri: 'https://storage.googleapis.com/' + BUCKET_NAME + '/' + name
42+
httpUri: 'https://storage.googleapis.com./' + BUCKET_NAME + '/' + name
4343
};
4444
});
4545

packages/google-cloud-speech/test/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ describe('Speech', function() {
156156
var calledWith = speech.calledWith_[0];
157157

158158
assert.deepEqual(calledWith, {
159-
baseUrl: 'speech.googleapis.com',
159+
baseUrl: 'speech.googleapis.com.',
160160
projectIdRequired: false,
161161
service: 'speech',
162162
protoServices: {

0 commit comments

Comments
 (0)