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 4e18c49 commit 3299c6dCopy full SHA for 3299c6d
src/lib/aws-clients.js
@@ -7,7 +7,7 @@ const useLocalStack = () => {
7
return process.env['NODE_ENV'] === 'test'
8
}
9
10
-const localStackEndpoint = () => process.env[localStackEndpointEnvVar] || 'http://localhost:4566'
+const localStackEndpoint = () => process.env[localStackEndpointEnvVar] || 'http://127.0.0.1:4566'
11
12
const localStackParams = () => ({
13
credentials: {
src/lib/databaseClient.js
@@ -27,7 +27,7 @@ export async function connect() {
27
if (!hostConfig) {
28
// use local client
29
const config = {
30
- node: 'http://localhost:9200'
+ node: 'http://127.0.0.1:9200'
31
32
client = new Client(config)
33
} else {
0 commit comments