Skip to content

Commit

Permalink
Elapsed time precision changed (#93)
Browse files Browse the repository at this point in the history
*  Code deployed will support every sql engine in sqlalchemy, converted from raw query to ORM layer and will solve issue #90

* Elapsed time can be greater than 100 seconds
  • Loading branch information
anandtripathi5 authored and muatik committed Dec 3, 2018
1 parent 2ad6947 commit 91e7ec7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flask_profiler/storage/sql_alchemy.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class Measurements(base):
id = Column(Integer, primary_key=True)
startedAt = Column(Numeric)
endedAt = Column(Numeric)
elapsed = Column(Numeric(6, 4))
elapsed = Column(Numeric(10, 4))
method = Column(Text)
args = Column(Text)
kwargs = Column(Text)
Expand Down

0 comments on commit 91e7ec7

Please sign in to comment.