From 3a2ccc1ea451f5ac69b54889654da69a1789a741 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krist=C3=B3f=20T=C3=B3th?= Date: Thu, 28 Mar 2019 16:26:47 +0100 Subject: [PATCH] Make echo_server use pipes in cwd instead of /tmp by default --- echo_server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/echo_server.py b/echo_server.py index a8f5a3a..136c933 100644 --- a/echo_server.py +++ b/echo_server.py @@ -9,7 +9,7 @@ class EchoPipeIOServer(PipeIOServer): if __name__ == "__main__": - pipe_io = EchoPipeIOServer() + pipe_io = EchoPipeIOServer('in', 'out') signal(SIGTERM, lambda a, b: pipe_io.stop()) signal(SIGINT, lambda a, b: pipe_io.stop()) print('Running pipe IO server with named pipes:')