Skip to content

Commit

Permalink
allow overriding test OL server db name (OpenLineage#3289)
Browse files Browse the repository at this point in the history
Signed-off-by: Maciej Obuchowski <[email protected]>
  • Loading branch information
mobuchowski authored Dec 2, 2024
1 parent b1d5935 commit 185213c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion integration/airflow/tests/integration/server/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@

app = Flask(__name__)

DATABASE = "/app/tmp.db"

DATABASE = os.getenv("DATABASE_FILE", "/app/tmp.db")

logging.basicConfig(
format="[%(asctime)s] {%(pathname)s:%(lineno)d} %(levelname)s - %(message)s",
Expand Down

0 comments on commit 185213c

Please sign in to comment.