]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Nolint exit(1) 14625/head
authorFred Morcos <fred.morcos@open-xchange.com>
Tue, 24 Sep 2024 07:11:45 +0000 (09:11 +0200)
committerFred Morcos <fred.morcos@open-xchange.com>
Tue, 24 Sep 2024 07:11:45 +0000 (09:11 +0200)
modules/lmdbbackend/lmdbbackend.cc

index 9ebacf577a195fc0080dd29ad4849938b74e9eb6..b6392cd4b6d123ac22878b3064084c7ae6ef66b0 100644 (file)
@@ -170,6 +170,7 @@ std::pair<uint32_t, uint32_t> LMDBBackend::getSchemaVersionAndShards(std::string
       if (retCode == MDB_NOTFOUND) {
         cerr << "schemaversion was set, but shards was not. Dazed and confused, trying to exit." << endl;
         mdb_txn_abort(txn);
+        // NOLINTNEXTLINE(concurrency-mt-unsafe)
         exit(1);
       }