Skip to content

Commit

Permalink
db: disable echo
Browse files Browse the repository at this point in the history
  • Loading branch information
stintel committed Jan 10, 2024
1 parent ad64582 commit f7fd0e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/db/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
if db_url.find("sqlite://") != -1:
connect_args["check_same_thread"] = False

engine = create_engine(db_url, echo=True, connect_args=connect_args)
engine = create_engine(db_url, echo=False, connect_args=connect_args)


def get_config_db():
Expand Down

0 comments on commit f7fd0e5

Please sign in to comment.