Use asterisk instead of null
This commit is contained in:
parent
1f4c608882
commit
c860a75978
|
@ -31,7 +31,7 @@
|
||||||
datasource.source === IntegrationTypes.DYNAMODB ||
|
datasource.source === IntegrationTypes.DYNAMODB ||
|
||||||
datasource.source === IntegrationTypes.S3
|
datasource.source === IntegrationTypes.S3
|
||||||
) {
|
) {
|
||||||
return `${datasource.config.endpoint}:${datasource.config.region}`
|
return `${datasource.config.endpoint || "*"}:${datasource.config.region}`
|
||||||
}
|
}
|
||||||
if (datasource.source === IntegrationTypes.ELASTICSEARCH) {
|
if (datasource.source === IntegrationTypes.ELASTICSEARCH) {
|
||||||
return datasource.config.url
|
return datasource.config.url
|
||||||
|
|
Loading…
Reference in New Issue