# # # patch "src/monotone/MonotoneThread.cpp" # from [6cc5a4613d4c02559c7d9d7b3d513647ac645a33] # to [873624b25c7e21f540123a7391fceab9321c97f8] # ============================================================ --- src/monotone/MonotoneThread.cpp 6cc5a4613d4c02559c7d9d7b3d513647ac645a33 +++ src/monotone/MonotoneThread.cpp 873624b25c7e21f540123a7391fceab9321c97f8 @@ -116,7 +116,10 @@ void MonotoneThread::run() args << "--db" << monotoneHandle->getData(); } else - if (monotoneHandle->getType() == MonotoneHandle::server_handle) + // FIXME: this is a workaround since automate stdio always + // asks for a open database before it proceeds + if (monotoneHandle->getType() == MonotoneHandle::server_handle || + monotoneHandle->getType() == MonotoneHandle::empty_handle) { args << "--db" << ":memory:"; }