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-task.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mod/mod-build-task.cxx') 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); -- cgit v1.1