From 21033565488f6c63b4c40962cccfdc8b6ca32b2a Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Sat, 7 Jul 2018 19:09:53 +0300 Subject: Add support for package submission --- mod/database-module.hxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'mod/database-module.hxx') diff --git a/mod/database-module.hxx b/mod/database-module.hxx index 9d1ef4c..70ae004 100644 --- a/mod/database-module.hxx +++ b/mod/database-module.hxx @@ -22,11 +22,11 @@ namespace brep { - // A module that utilises the database. Specifically, it will retry the + // A handler that utilises the database. Specifically, it will retry the // request in the face of recoverable database failures (deadlock, loss of // connection, etc) up to a certain number of times. // - class database_module: public module + class database_module: public handler { protected: database_module () = default; @@ -38,10 +38,10 @@ namespace brep database_module (const database_module&); // Required to avoid getting warning from clang that - // database_module::init() hides module::init() virtual functions. This + // database_module::init() hides handler::init() virtual functions. This // way all functions get to the same scope and become overloaded set. // - using module::init; + using handler::init; // Initialize the package database instance. Throw odb::exception on // failure. -- cgit v1.1