Apoc.periodic.submit suddenly does not work anymore

Hi, I was finishing my project when I realized some of the cyphers suddenly stopped working. I was troubleshooting the problem until I was able to pinpoint the problem: the apoc .periodic.submit was not working anymore and I don't know what I did to stop it from working. Other apoc.periodic procedures worked as intended like sleep and list.

I was even trying to get the example given by the documentation to work.

CALL apoc.periodic.submit(
"create-person",
"CREATE (:Person {name: 'Michael Hunger'})"
);

But even the above cypher does not work, could anyone figure out why? For reference, I am using AuraDB and the server version is currently 5.25-aura.

Do you get an error message?

Not even any error message, the cyphers proceeded as normal but I know it does not work because it did not create any new nodes.