From c8507c124709a8640fbae46fa37015d1e00a694f Mon Sep 17 00:00:00 2001 From: Maria Matejka Date: Thu, 2 Mar 2023 11:48:17 +0100 Subject: Fixed stopping of import request with no imports in idle table --- nest/rt-table.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nest/rt-table.c b/nest/rt-table.c index fab8f06d..3428c122 100644 --- a/nest/rt-table.c +++ b/nest/rt-table.c @@ -3072,7 +3072,7 @@ again: } /* In some cases, we may want to directly proceed to export cleanup */ - if (EMPTY_LIST(tab->exporter.e.hooks) && tab->wait_counter) + if (tab->wait_counter && (EMPTY_LIST(tab->exporter.e.hooks) || !tab->exporter.first)) rt_export_cleanup(tab); } -- cgit v1.2.3