-
Notifications
You must be signed in to change notification settings - Fork 18
Description
Hi there,
actually I wanted to open an issue on TYPO3-Forge but as it's external_import related I want to make sure it's really a core issue.
I have an environment with 2 configured external databases. All is fine, fetching data from these databases work as expected. Additionally there's EXT:external_import installed where in one of the custom steps I fetch data from an external database via Doctrine-Queries. The associated scheduler task fetches the data and it works if I manually run the task via backend scheduler.
Now the problem: This doesn't work if the task automatically starts via CLI/cronjob. Then the external database is not called but the default one, which of course can't work. In that case the following log message is stored in tx_externalimport_domain_model_log:
SELECT command denied to user 'username'@'localhost' for table 'pages' [0]
The current workaround is to bypass doctrine and directly connect to the database via pdo methods -> this works (with the same database configuration parameters). Is the behaviour a core bug or can I do anything about it?
Cheers
TYPO3 10.4.17
external_import 5.1.1