diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-04-20T13·28+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-04-20T13·28+0200 |
commit | ddea253ff8312bf1d2559999c4dd8d9cc3e5b240 (patch) | |
tree | 5b2a0e8bdbaddcbab0b2f8124983d52577128d63 /src/libstore/worker-protocol.hh | |
parent | c0c4ddcd9c19a29e3dfd26160929f3278150547f (diff) |
RemoteStore: Propagate InvalidPath exceptions from the daemon
Diffstat (limited to 'src/libstore/worker-protocol.hh')
-rw-r--r-- | src/libstore/worker-protocol.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/worker-protocol.hh b/src/libstore/worker-protocol.hh index d62244d18c12..d133328d1e76 100644 --- a/src/libstore/worker-protocol.hh +++ b/src/libstore/worker-protocol.hh @@ -6,7 +6,7 @@ namespace nix { #define WORKER_MAGIC_1 0x6e697863 #define WORKER_MAGIC_2 0x6478696f -#define PROTOCOL_VERSION 0x110 +#define PROTOCOL_VERSION 0x111 #define GET_PROTOCOL_MAJOR(x) ((x) & 0xff00) #define GET_PROTOCOL_MINOR(x) ((x) & 0x00ff) |