From 7440c531f3eadabd9496217ad37f7247e17f5358 Mon Sep 17 00:00:00 2001 From: Charles Moore <122481442+moorec-aws@users.noreply.github.com> Date: Fri, 22 Mar 2024 19:41:05 +0000 Subject: [PATCH] fix: increase max named pipe instances to 4 (#91) Signed-off-by: Charles Moore <122481442+moorec-aws@users.noreply.github.com> --- .../adaptor_runtime_client/named_pipe/named_pipe_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openjd/adaptor_runtime_client/named_pipe/named_pipe_config.py b/src/openjd/adaptor_runtime_client/named_pipe/named_pipe_config.py index c12fe2e..7bc7697 100644 --- a/src/openjd/adaptor_runtime_client/named_pipe/named_pipe_config.py +++ b/src/openjd/adaptor_runtime_client/named_pipe/named_pipe_config.py @@ -5,4 +5,4 @@ DEFAULT_NAMED_PIPE_TIMEOUT_MILLISECONDS = 5000 # This number must be >= 2, one instance is for normal operation communication # and the other one is for immediate shutdown communication -DEFAULT_MAX_NAMED_PIPE_INSTANCES = 2 +DEFAULT_MAX_NAMED_PIPE_INSTANCES = 4