Skip to content

Commit

Permalink
Fix failing aiopg tests (#317)
Browse files Browse the repository at this point in the history
  • Loading branch information
alrex authored Feb 5, 2021
1 parent b016f6f commit b53b9a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- 'release/*'
pull_request:
env:
CORE_REPO_SHA: 09b010cfcc85e2aa07326e9204541b80a7dd52f0
CORE_REPO_SHA: 48efb9737b037b7fb85ecafdf0f3dccd45d96af8

jobs:
build:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
from opentelemetry.instrumentation.aiopg import AiopgInstrumentor
from opentelemetry.test.test_base import TestBase

POSTGRES_HOST = os.getenv("POSTGRESQL_HOST", "localhost")
POSTGRES_HOST = os.getenv("POSTGRESQL_HOST", "127.0.0.1")
POSTGRES_PORT = int(os.getenv("POSTGRESQL_PORT", "5432"))
POSTGRES_DB_NAME = os.getenv("POSTGRESQL_DB_NAME", "opentelemetry-tests")
POSTGRES_PASSWORD = os.getenv("POSTGRESQL_PASSWORD", "testpassword")
Expand Down

0 comments on commit b53b9a0

Please sign in to comment.