# HG changeset patch # User Sebastien Jodogne # Date 1580805296 -3600 # Node ID bbd57f5672faa1ed20f4591893a13dd0b27e5f52 # Parent 0b3e9ee53c46b8996c7152a9289890b23e0bae41 fix compilation of SQLite plugin diff -r 0b3e9ee53c46 -r bbd57f5672fa SQLite/Plugins/SQLiteIndex.h --- a/SQLite/Plugins/SQLiteIndex.h Mon Feb 03 22:29:51 2020 +0100 +++ b/SQLite/Plugins/SQLiteIndex.h Tue Feb 04 09:34:56 2020 +0100 @@ -48,6 +48,14 @@ { return that_.OpenInternal(); } + + virtual void GetConnectionRetriesParameters(unsigned int& maxConnectionRetries, + unsigned int& connectionRetryInterval) + { + // Dummy parameters + maxConnectionRetries = 0; + connectionRetryInterval = 1; + } }; OrthancPluginContext* context_;