From 62ad001a61722b3275cf106414ce6837c85ca036 Mon Sep 17 00:00:00 2001 From: Anthony Geay Date: Tue, 11 Jul 2023 22:27:59 +0200 Subject: [PATCH] Do not fetch data on local python node in case of squeeze memory --- src/runtime/PythonNode.cxx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/runtime/PythonNode.cxx b/src/runtime/PythonNode.cxx index cbc2ff4df..001080045 100644 --- a/src/runtime/PythonNode.cxx +++ b/src/runtime/PythonNode.cxx @@ -752,8 +752,9 @@ void PythonNode::executeLocal() //calculation DEBTRACE( "----------------PyNode::calculation---------------" ); - - executeLocalInternal( unpxy.str() ); + + if( ! getSqueezeStatus() ) + executeLocalInternal( unpxy.str() ); executeLocalInternal( _script ); -- 2.39.2