We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 021e97f commit dacc1d3Copy full SHA for dacc1d3
src/modules/apigw/index.js
@@ -490,7 +490,9 @@ class Apigw {
490
subDomain: domainItem.domain,
491
netSubDomain: subDomain,
492
certificateId: domainItem.certificateId,
493
- isDefaultMapping: domainItem.isDefaultMapping === true ? true : false,
+ // default isDefaultMapping is true
494
+ isDefaultMapping: domainItem.isDefaultMapping === false ? false : true,
495
+ // if isDefaultMapping is false, should append pathMappingSet config
496
pathMappingSet: domainItem.pathMappingSet || [],
497
netType: domainItem.netType ? domainItem.netType : 'OUTER',
498
protocol: domainProtocol,
0 commit comments