File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ functions:
179179 input:
180180 key-a: "value-a"
181181 key-b: "value-b"
182-
182+
183183 # ID of the private network to attach the function to
184184 privateNetworkId: "3fd741d4-f686-4afc-bcea-d720c695748f"
185185` ` `
Original file line number Diff line number Diff line change @@ -179,7 +179,8 @@ module.exports = {
179179
180180 async updateSingleContainer ( container , foundContainer ) {
181181 let privateNetworkId = container . privateNetworkId ;
182- const hasToDeletePrivateNetwork = foundContainer . private_network_id && ! container . privateNetworkId ;
182+ const hasToDeletePrivateNetwork =
183+ foundContainer . private_network_id && ! container . privateNetworkId ;
183184 if ( hasToDeletePrivateNetwork ) {
184185 privateNetworkId = "" ;
185186 }
Original file line number Diff line number Diff line change @@ -210,7 +210,8 @@ Runtime lifecycle doc : https://www.scaleway.com/en/docs/compute/functions/refer
210210
211211 async updateSingleFunction ( func , foundFunc ) {
212212 let privateNetworkId = func . privateNetworkId ;
213- const hasToDeletePrivateNetwork = foundFunc . private_network_id && ! func . privateNetworkId ;
213+ const hasToDeletePrivateNetwork =
214+ foundFunc . private_network_id && ! func . privateNetworkId ;
214215 if ( hasToDeletePrivateNetwork ) {
215216 privateNetworkId = "" ;
216217 }
You can’t perform that action at this time.
0 commit comments