Scheduled workflow not running

Describe the problem/error/question

I´ve set up a workflow with two input trigger: Telegram Message, Scheduler. However, the scheduler is active, the workflow is active but the workflow is never executed. If I run it manually or via the telegram trigger it works as expected.

What is the error message (if any)?

Scheduler not executed, no error message.

Please share your workflow

Share the output returned by the last node

n/a

Information on your n8n setup

  • n8n version: 1.93.0
  • Running n8n via (Docker, npm, n8n cloud, desktop app): cloud

Hello @Mik3e
I guess n8n does not support multiple concurrent triggers in the same workflow, because it would not be able to correctly manage which one to activate in the runtime

You can create two distinct workflows:

  • One with Telegram Trigger
  • One with Schedule Trigger

In both, add an Execute Workflow node that calls a third workflow called, for example, Common Handler, where you put all the shared logic.

So you get the effect of “two alternative triggers” that activate the same logical block

1 Like

Thanks, that might make sense… :slight_smile:

1 Like

So now I´ve split up the input trigger in two workflows (one for telegram and one for the scheduler). Telegram works fine but the Scheduler is still not executed.

  • The workflow is set to “active”
  • The timing is set to once every 12 hours
  • I´ve already removed the scheduler node and added a new one.

To me it looks more like a bug then a configuration.
Here is how the trigger workflow now looks like:

Are there any other possible reasons why the trigger isn´t executed in production?

Thanks & best regards,
Michael