From 4ba97b671533399e960f9230013f4678cc45b1d2 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Tue, 29 Aug 2017 00:00:39 +0300 Subject: Use system_clock instead of timestamp::clock --- mod/mod-build-result.cxx | 2 +- mod/mod-build-task.cxx | 6 +++--- mod/mod-builds.cxx | 2 +- mod/mod-package-version-details.cxx | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) (limited to 'mod') diff --git a/mod/mod-build-result.cxx b/mod/mod-build-result.cxx index 1f5eb69..6cf94b0 100644 --- a/mod/mod-build-result.cxx +++ b/mod/mod-build-result.cxx @@ -360,7 +360,7 @@ handle (request& rq, response&) b->results_section.load (); b->results = move (rqm.result.results); - b->timestamp = timestamp::clock::now (); + b->timestamp = system_clock::now (); build_db_->update (b); } diff --git a/mod/mod-build-task.cxx b/mod/mod-build-task.cxx index 771b1ee..55cfd5b 100644 --- a/mod/mod-build-task.cxx +++ b/mod/mod-build-task.cxx @@ -213,7 +213,7 @@ handle (request& rq, response& rs) // Calculate the build (building state) or rebuild (built state) expiration // time for package configurations // - timestamp now (timestamp::clock::now ()); + timestamp now (system_clock::now ()); auto expiration = [&now] (size_t timeout) -> timestamp { @@ -511,7 +511,7 @@ handle (request& rq, response& rs) b->machine = mh.name; b->machine_summary = move (mh.summary); b->target = cm.config->target; - b->timestamp = timestamp::clock::now (); + b->timestamp = system_clock::now (); build_db_->update (b); } @@ -627,7 +627,7 @@ handle (request& rq, response& rs) b->results_section.load (); b->results.clear (); - b->timestamp = timestamp::clock::now (); + b->timestamp = system_clock::now (); build_db_->update (b); diff --git a/mod/mod-builds.cxx b/mod/mod-builds.cxx index 7b806bf..04094e5 100644 --- a/mod/mod-builds.cxx +++ b/mod/mod-builds.cxx @@ -421,7 +421,7 @@ handle (request& rq, response& rs) // Print package build configurations ordered by the timestamp (later goes // first). // - timestamp now (timestamp::clock::now ()); + timestamp now (system_clock::now ()); // Enclose the subsequent tables to be able to use nth-child CSS selector. // diff --git a/mod/mod-package-version-details.cxx b/mod/mod-package-version-details.cxx index 6007a80..d0d5978 100644 --- a/mod/mod-package-version-details.cxx +++ b/mod/mod-package-version-details.cxx @@ -348,7 +348,7 @@ handle (request& rq, response& rs) s << H3 << "Builds" << ~H3 << DIV(ID="builds"); - timestamp now (timestamp::clock::now ()); + timestamp now (system_clock::now ()); transaction t (build_db_->begin ()); // Print built package configurations. -- cgit v1.1