Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions kyototycoon/kttimeddb.cc
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,12 @@ bool TimedDB::dump_snapshot_atomic(const std::string& dest, kc::Compressor* zcom
info == typeid(kc::StashDB) || info == typeid(kc::CacheDB) ||
info == typeid(kc::GrassDB)) forkable = true;
}

/* hack to get cactus running on Ubuntu 18.04
see: https://github.com/ComparativeGenomicsToolkit/cactus/pull/148#issuecomment-589151694
*/
forkable = false;

int64_t cpid = -1;
if (forkable) {
class Forker : public kc::BasicDB::FileProcessor {
Expand Down