Skip to content

Commit

Permalink
fix flaky migration acceptance test (#4743)
Browse files Browse the repository at this point in the history
  • Loading branch information
subodh1810 committed Jul 14, 2021
1 parent 1f3acff commit e2a9eb7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,11 @@ private Map<String, String> getEnvironmentVariables(String version) {
env.put("API_URL", "http://localhost:7001/api/v1/");
env.put("TEMPORAL_HOST", "airbyte-temporal:7233");
env.put("INTERNAL_API_HOST", "airbyte-server:7001");
env.put("S3_LOG_BUCKET", "");
env.put("S3_LOG_BUCKET_REGION", "");
env.put("AWS_ACCESS_KEY_ID", "");
env.put("AWS_SECRET_ACCESS_KEY", "");
env.put("GCP_STORAGE_BUCKET", "");
return env;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ services:
- AIRBYTE_VERSION=${VERSION}
- AIRBYTE_ROLE=${AIRBYTE_ROLE:-}
- TEMPORAL_HOST=${TEMPORAL_HOST}
- S3_LOG_BUCKET=${S3_LOG_BUCKET}
- S3_LOG_BUCKET_REGION=${S3_LOG_BUCKET_REGION}
- AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID}
- AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY}
- GCP_STORAGE_BUCKET=${GCP_STORAGE_BUCKET}
ports:
- 7001:8001
volumes:
Expand Down

0 comments on commit e2a9eb7

Please sign in to comment.