summaryrefslogtreecommitdiffstats
path: root/src/lib/database/database_connection.h
diff options
context:
space:
mode:
authorAndrei Pavel <andrei@isc.org>2024-02-20 16:39:49 +0100
committerAndrei Pavel <andrei@isc.org>2024-02-22 09:06:32 +0100
commit014c7274c83aaafd12b59781004769280cbfac39 (patch)
tree50582251a40a3b8636023855c2d53e7dd19eeff2 /src/lib/database/database_connection.h
parent[#3025] re-enable ProcessSpawnTest.isRunningSync (diff)
downloadkea-014c7274c83aaafd12b59781004769280cbfac39.tar.xz
kea-014c7274c83aaafd12b59781004769280cbfac39.zip
[#3025] simplify logic in ensureSchemaVersion
... and allow kea-admin path to be overridden in tests.
Diffstat (limited to 'src/lib/database/database_connection.h')
-rw-r--r--src/lib/database/database_connection.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/database/database_connection.h b/src/lib/database/database_connection.h
index f85d8a0b56..5b46e40783 100644
--- a/src/lib/database/database_connection.h
+++ b/src/lib/database/database_connection.h
@@ -94,7 +94,7 @@ public:
};
/// @brief Thrown when an initialization of the schema failed.
-class SchemaInitializationFailed: public Exception {
+class SchemaInitializationFailed : public Exception {
public:
SchemaInitializationFailed(const char* file, size_t line, const char* what) :
isc::Exception(file, line, what) {}