Mercurial > hg > piper-cpp
comparison 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 |
comparison
equal
deleted
inserted
replaced
119:5876f3e9c677 | 120:88ecaf8b163a |
---|---|
603 if (debug) { | 603 if (debug) { |
604 cerr << myname << " " << pid << ": error: " << e.what() << endl; | 604 cerr << myname << " " << pid << ": error: " << e.what() << endl; |
605 } | 605 } |
606 | 606 |
607 writeException(format, e, request.type); | 607 writeException(format, e, request.type); |
608 | 608 |
609 exit(1); | 609 //!!! some exceptions should not be continued after, |
610 //! but json/capnp parser ones should | |
611 //exit(1); | |
610 } | 612 } |
611 } | 613 } |
612 | 614 |
613 exit(0); | 615 exit(0); |
614 } | 616 } |