add-role-feature
Some checks failed
deploy / deploy (push) Failing after 1m23s

This commit is contained in:
2023-12-25 01:42:39 +03:00
parent 2547bd111b
commit a4b0fd1a46
3 changed files with 38 additions and 10 deletions

View File

@@ -29,7 +29,7 @@ def before_cursor_execute(conn, cursor, statement, parameters, context, executem
def after_cursor_execute(conn, cursor, statement, parameters, context, executemany):
total = time.time() - conn.info["query_start_time"].pop(-1)
total = math.floor(total * 10000) / 10
if total > 100:
if total > 35:
print(f"\n{statement}\n----------------- Finished in {total} ms ")