File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -77,9 +77,9 @@ class ScalewayDeploy {
7777 "deploy:deploy" : ( ) =>
7878 BbPromise . bind ( this )
7979 . then ( this . createServerlessNamespace )
80+ . then ( this . updateServerlessNamespace )
8081 . then ( chainContainers )
8182 . then ( chainFunctions )
82- . then ( this . updateServerlessNamespace )
8383 . then ( this . deployTriggers ) ,
8484 } ;
8585 }
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ module.exports = {
33 const { service } = this . provider . serverless ;
44 const { provider } = service ;
55 this . namespaceName = service . service ;
6- this . namespaceVariables = provider . env || { } ;
7- this . namespaceSecretVariables = provider . secret || { } ;
6+ this . namespaceVariables = provider . env ;
7+ this . namespaceSecretVariables = provider . secret ;
88 this . runtime = provider . runtime ;
99
1010 const defaultTokenExpirationDate = new Date ( ) ;
You can’t perform that action at this time.
0 commit comments