X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/50e9e5553d2cc194698633753c302789ae5bb2fc..37e995fb7423b2b353c599e2a1b00bda7c29ee6f:/services/api/lib/db_current_time.rb diff --git a/services/api/lib/db_current_time.rb b/services/api/lib/db_current_time.rb index 120d5a406a..b4a6423546 100644 --- a/services/api/lib/db_current_time.rb +++ b/services/api/lib/db_current_time.rb @@ -1,7 +1,7 @@ module DbCurrentTime - CURRENT_TIME_SQL = "SELECT CURRENT_TIMESTAMP" + CURRENT_TIME_SQL = "SELECT clock_timestamp()" def db_current_time - ActiveRecord::Base.connection.select_value(CURRENT_TIME_SQL).to_time + Time.parse(ActiveRecord::Base.connection.select_value(CURRENT_TIME_SQL)).to_time end end