0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-09-19 20:05:21 +00:00

Fixed stopping of import request with no imports in idle table

This commit is contained in:
Maria Matejka 2023-03-02 11:48:17 +01:00
parent 03bfb8b59d
commit c8507c1247

View File

@ -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);
}