Signed-off-by: Leon Stein <leons727@gmail.com>
This commit is contained in:
Leon Stein
2021-12-28 11:49:10 -05:00
parent e662ee528b
commit c2d09d8c17
2 changed files with 3 additions and 2 deletions
+3 -1
View File
@@ -125,7 +125,9 @@ export function readAwsS3IntegrationConfigs(
// If no explicit amazonaws.com integration was added, put one in the list as
// a convenience
if (!result.some(c => c.host === AMAZON_AWS_HOST)) {
result.push({ host: AMAZON_AWS_HOST });
result.push({
host: AMAZON_AWS_HOST,
});
}
return result;
}
-1
View File
@@ -17,6 +17,5 @@ export { AwsS3Integration } from './AwsS3Integration';
export {
readAwsS3IntegrationConfig,
readAwsS3IntegrationConfigs,
AMAZON_AWS_HOST,
} from './config';
export type { AwsS3IntegrationConfig } from './config';