File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -7,13 +7,13 @@ module.exports = {
77 setDefaults ( ) {
88 this . options . stage = _ . get ( this , 'options.stage' )
99 || 'dev' ;
10-
11- // serverless framework is hard-coding us-east-1 region from aws
10+
11+ // serverless framework is hard-coding us-east-1 region from aws
1212 // this is temporary fix for multiple regions
1313 const region = _ . get ( this , 'options.region' )
1414 || _ . get ( this , 'serverless.service.provider.region' ) ;
1515
16- this . options . region = ( ! region || region === 'us-east-1' )
16+ this . options . region = ( ! region || region === 'us-east-1' )
1717 ? 'us-central1' : region ;
1818
1919 return BbPromise . resolve ( ) ;
Original file line number Diff line number Diff line change @@ -42,6 +42,5 @@ describe('Utils', () => {
4242 expect ( googleCommand . options . region ) . toEqual ( 'my-region' ) ;
4343 } ) ;
4444 } ) ;
45-
4645 } ) ;
4746} ) ;
You can’t perform that action at this time.
0 commit comments