Improve error message if the daemon worker fails to start

This commit is contained in:
Eelco Dolstra 2014-10-31 09:36:09 +01:00
parent 1cdbb9d724
commit e389f4ea55
2 changed files with 2 additions and 3 deletions

View file

@ -87,8 +87,7 @@ void RemoteStore::openConnection(bool reserveSpace)
processStderr();
}
catch (Error & e) {
throw Error(format("cannot start worker (%1%)")
% e.msg());
throw Error(format("cannot start daemon worker: %1%") % e.msg());
}
setOptions();

View file

@ -565,7 +565,7 @@ static void processConnection(bool trusted)
to.flush();
} catch (Error & e) {
stopWork(false, e.msg());
stopWork(false, e.msg(), GET_PROTOCOL_MINOR(clientVersion) >= 8 ? 1 : 0);
to.flush();
return;
}