Mercurial > hg > piper-cpp
diff vamp-server/server.cpp @ 120:88ecaf8b163a
Don't exit on exception (needs refining)
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Thu, 27 Oct 2016 13:42:07 +0100 |
parents | ff3fd8d1b2dc |
children | 6b11ca6bb0a3 |
line wrap: on
line diff
--- a/vamp-server/server.cpp Thu Oct 27 12:04:44 2016 +0100 +++ b/vamp-server/server.cpp Thu Oct 27 13:42:07 2016 +0100 @@ -605,8 +605,10 @@ } writeException(format, e, request.type); - - exit(1); + + //!!! some exceptions should not be continued after, + //! but json/capnp parser ones should + //exit(1); } }