diff options
author | Maria Matejka <mq@ucw.cz> | 2023-03-02 11:48:17 +0100 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2023-04-04 17:00:58 +0200 |
commit | c8507c124709a8640fbae46fa37015d1e00a694f (patch) | |
tree | 1ba7dee9d649759706b2837aad88923a7d365912 | |
parent | 03bfb8b59dbd6da41990d717a639662aeb31c144 (diff) |
Fixed stopping of import request with no imports in idle table
-rw-r--r-- | nest/rt-table.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |