File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1+ - Fixed an issue with deploying function groups containing v2 functions. (#6408 )
12- Use GetDefaultBucket endpoint to fetch Storage Default Bucket.
Original file line number Diff line number Diff line change @@ -331,7 +331,7 @@ export async function createFunction(cloudFunction: InputCloudFunction): Promise
331331
332332 cloudFunction . serviceConfig . environmentVariables = {
333333 ...cloudFunction . serviceConfig . environmentVariables ,
334- FUNCTION_TARGET : functionId ,
334+ FUNCTION_TARGET : functionId . replace ( "-" , "." ) ,
335335 } ;
336336
337337 try {
@@ -439,7 +439,7 @@ export async function updateFunction(cloudFunction: InputCloudFunction): Promise
439439
440440 cloudFunction . serviceConfig . environmentVariables = {
441441 ...cloudFunction . serviceConfig . environmentVariables ,
442- FUNCTION_TARGET : functionId ,
442+ FUNCTION_TARGET : functionId . replace ( "-" , "." ) ,
443443 } ;
444444
445445 try {
You can’t perform that action at this time.
0 commit comments