more standard time unit;
authorwenzelm
Sun, 16 Jul 2023 14:19:36 +0200
changeset 78365 bb5e2a7198e3
parent 78364 e33cca11b474
child 78366 aa4ea5398ab8
more standard time unit;
src/Pure/General/sql.scala
--- a/src/Pure/General/sql.scala	Sun Jul 16 14:11:56 2023 +0200
+++ b/src/Pure/General/sql.scala	Sun Jul 16 14:19:36 2023 +0200
@@ -464,7 +464,7 @@
       val prop = "isabelle.transaction_trace"
       val trace_min =
         System.getProperty(prop, "") match {
-          case Value.Long(ms) => Time.ms(ms)
+          case Value.Seconds(t) => t
           case "true" => Time.min
           case "false" | "" => Time.max
           case s => error("Bad system property " + prop + ": " + quote(s))