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 )
1
2
- 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
331
331
332
332
cloudFunction . serviceConfig . environmentVariables = {
333
333
...cloudFunction . serviceConfig . environmentVariables ,
334
- FUNCTION_TARGET : functionId ,
334
+ FUNCTION_TARGET : functionId . replace ( "-" , "." ) ,
335
335
} ;
336
336
337
337
try {
@@ -439,7 +439,7 @@ export async function updateFunction(cloudFunction: InputCloudFunction): Promise
439
439
440
440
cloudFunction . serviceConfig . environmentVariables = {
441
441
...cloudFunction . serviceConfig . environmentVariables ,
442
- FUNCTION_TARGET : functionId ,
442
+ FUNCTION_TARGET : functionId . replace ( "-" , "." ) ,
443
443
} ;
444
444
445
445
try {
You can’t perform that action at this time.
0 commit comments