Version number is now printed at the start of each session.
This commit is contained in:
parent
595ddd2270
commit
02af779f69
1 changed files with 2 additions and 0 deletions
|
|
@ -6,6 +6,7 @@ import mysql.connector.connection
|
|||
import trino.dbapi
|
||||
|
||||
from connections import get_connection, clean_up_connection
|
||||
from _version import __version__
|
||||
|
||||
|
||||
def run_measuring_session(config: dict) -> None:
|
||||
|
|
@ -15,6 +16,7 @@ def run_measuring_session(config: dict) -> None:
|
|||
:param config: the full config for the measuring session.
|
||||
:return: None
|
||||
"""
|
||||
print(f"Query Performance Gauge - Version: {__version__}")
|
||||
print("Starting the measuring session.")
|
||||
|
||||
connection = get_connection(config["connection_details"])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue