From 1f848c4d69d0f5e669900ca014baf8aad465ff60 Mon Sep 17 00:00:00 2001 From: MediaPipe Team Date: Thu, 9 Feb 2023 17:21:32 -0800 Subject: [PATCH] Fix typo in CalculatorGraph error message PiperOrigin-RevId: 508517972 --- mediapipe/framework/calculator_graph.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mediapipe/framework/calculator_graph.cc b/mediapipe/framework/calculator_graph.cc index 526a74835..291e93734 100644 --- a/mediapipe/framework/calculator_graph.cc +++ b/mediapipe/framework/calculator_graph.cc @@ -1228,7 +1228,7 @@ bool CalculatorGraph::UnthrottleSources() { "Detected a deadlock due to input throttling for: \"", stream->Name(), "\". All calculators are idle while packet sources remain active " "and throttled. Consider adjusting \"max_queue_size\" or " - "\"resolve_deadlock\"."))); + "\"report_deadlock\"."))); continue; } int new_size = stream->QueueSize() + 1;