Skip to content

Commit f449666

Browse files
committed
let env handle the auth
1 parent 868399d commit f449666

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ jobs:
5959
run: |
6060
pip install localstack localstack
6161
docker pull localstack/localstack-pro
62-
localstack auth set-token $LOCALSTACK_AUTH_TOKEN
6362
localstack start -d
6463
localstack wait -t 30
6564

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ class LocalstackPlugin {
539539
env.DOCKER_CMD = 'sudo docker';
540540
}
541541
const options = { env: env, maxBuffer };
542-
return exec('localstack start -d --image localstack/localstack-pro', options)
542+
return exec('localstack start -d', options)
543543
.then(getContainer)
544544
.then((containerID) => addNetworks(containerID))
545545
.then((containerID) => checkStatus(containerID));

0 commit comments

Comments
 (0)