From 2192b82c8c1e0f16a457ab93f1ef69ff681235f9 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sun, 5 Dec 2021 12:38:35 +0100 Subject: [PATCH] Do not hang when running with MPI Stockfish. --- remoteglot.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remoteglot.pl b/remoteglot.pl index f83ac49..df524a6 100755 --- a/remoteglot.pl +++ b/remoteglot.pl @@ -152,7 +152,7 @@ sub handle_uci { return if ($engine->{'stopping'} && $line !~ /^bestmove/); $engine->{'stopping'} = 0; - if ($line =~ /^info/) { + if ($line =~ /^info/ && $line !~ / cluster /) { my (@infos) = split / /, $line; shift @infos; -- 2.39.2