Base44 testing

Scheduled Workflow Running at Wrong Times or Not at All

Your Base44 app has scheduled workflows (daily reports, weekly reminders, monthly billing) that either don't run at all, run at the wrong time, or run multiple times. A workflow scheduled for 9 AM runs at 2 AM, a daily digest never fires, or a monthly report generates three times in one day.

Scheduled workflows are the backbone of automated business processes. When they fire at wrong times, reports go out overnight when nobody reads them, reminders arrive at midnight, and billing processes run at unexpected intervals causing duplicate charges or missed payments.

The timezone issue is particularly common: you configure a schedule thinking it's in your local timezone, but the server interprets it as UTC, causing a consistent offset in all your scheduled tasks.

Error Messages You Might See

Scheduled workflow did not execute at expected time Workflow ran at 02:00 UTC instead of 09:00 local Multiple executions detected within same period Cron expression validation failed Scheduled task not found after deployment
Scheduled workflow did not execute at expected timeWorkflow ran at 02:00 UTC instead of 09:00 localMultiple executions detected within same periodCron expression validation failedScheduled task not found after deployment

Common Causes

  • Timezone mismatch — The schedule is configured in your local timezone but the server runs in UTC, causing a time offset
  • Cron expression wrong — The cron syntax has a common mistake like month/day-of-week confusion or using 0-indexed vs 1-indexed values
  • Schedule not saved correctly — The UI shows the correct schedule but the saved configuration has a different value
  • Overlapping executions — The workflow takes longer than the interval, causing multiple instances to run simultaneously
  • Server restart clearing schedule — The scheduled task registration doesn't persist across server restarts or deployments

How to Fix It

  1. Verify the timezone setting — Check if your Base44 app's scheduler uses UTC or your local timezone. Adjust the scheduled time accordingly
  2. Test with a short interval first — Set the schedule to run every 5 minutes and verify it fires correctly before setting the actual interval
  3. Validate cron expressions — Use a cron expression tool (crontab.guru) to verify your expression means what you think it means
  4. Add execution logging — Log every workflow execution with a timestamp so you can verify when it actually runs
  5. Prevent overlapping runs — Add a lock or flag that prevents a new execution from starting if the previous one hasn't finished

Real developers can help you.

Simon A. Simon A. I'm a backend developer building APIs, emulators, and interactive game systems. Professionally, I've developed Java/Spring reporting solutions, managed relational and NoSQL databases, and implemented CI/CD workflows. Costea Adrian Costea Adrian Embedded Engineer specilizing in perception systems. Latest project was a adas camera calibration system. Matt Butler Matt Butler Software Engineer @ AWS BurnHavoc BurnHavoc Been around fixing other peoples code for 20 years. Franck Plazanet Franck Plazanet I am a Strategic Engineering Leader with over 8 years of experience building high-availability enterprise systems and scaling high-performing technical teams. My focus is on bridging the gap between complex technology and business growth. Core Expertise: 🚀 Leadership: Managing and coaching teams of 15+ engineers, fostering a culture of accountability and continuous improvement. 🏗️ Architecture: Enterprise Core Systems, Multi-system Integration (ERP/API/ETL), and Core Database Structure. ☁️ Cloud & Scale: AWS Expert; architected systems handling 10B+ monthly requests and managing 100k+ SKUs. 📈 Business Impact: Aligning tech strategy with P&L goals to drive $70k+ in monthly recurring revenue. I thrive on "out-of-the-box" thinking to solve complex technical bottlenecks and am always looking for ways to use automation to improve business productivity. Nam Tran Nam Tran 10 years as fullstack developer Milan Surelia Milan Surelia Milan Surelia is a Mobile App Developer with 5+ years of experience crafting scalable, cross-platform apps at 7Span and Meticha. At 7Span, he engineers feature-rich Flutter apps with smooth performance and modern UI. As the Co-Founder of Meticha, he builds open-source tools and developer-focused products that solve real-world problems. Expertise: 💡 Developing cross-platform apps using Flutter, Dart, and Jetpack Compose for Android, iOS, and Web. 🖋️ Sharing insights through technical writing, blogging, and open-source contributions. 🤝 Collaborating closely with designers, PMs, and developers to build seamless mobile experiences. Notable Achievements: 🎯 Revamped the Vepaar app into Vepaar Store & CRM with a 2x performance boost and smoother UX. 🚀 Launched Compose101 — a Jetpack Compose starter kit to speed up Android development. 🌟 Open source contributions on Github & StackOverflow for Flutter & Dart 🎖️ Worked on improving app performance and user experience with smart solutions. Milan is always happy to connect, work on new ideas, and explore the latest in technology. legrab legrab I'll fill this later Stanislav Prigodich Stanislav Prigodich 15+ years building iOS and web apps at startups and enterprise companies. I want to use that experience to help builders ship real products - when something breaks, I'm here to fix it. Sage Fulcher Sage Fulcher Hey I'm Sage! Im a Boston area software engineer who grew up in South Florida. Ive worked at a ton of cool places like a telehealth kidney care startup that took part in a billion dollar merger (Cricket health/Interwell health), a boutique design agency where I got to work on a ton of exciting startups including a photography education app, a collegiate Esports league and more (Philosophie), a data analytics as a service startup in Cambridge (MA) as well as at Phillips and MIT Lincoln Lab where I designed and developed novel network security visualizations and analytics. I've been writing code and furiously devoted to using computers to make people’s lives easier for about 17 years. My degree is in making computers make pretty lights and sounds. Outside of work I love hip hop, the Celtics, professional wrestling, magic the gathering, photography, drumming, and guitars (both making and playing them)

You don't need to be technical. Just describe what's wrong and a verified developer will handle the rest.

Get Help

Frequently Asked Questions

Why does my Base44 scheduled workflow run at the wrong time?

The most common cause is a timezone mismatch. If you schedule for 9 AM but the server uses UTC, and you're in EST (UTC-5), the workflow will run at 9 AM UTC which is 4 AM EST. Convert your desired time to UTC.

How do I verify when my scheduled workflow actually runs?

Add logging to the first step of your workflow that records the current timestamp. Then check the logs after the expected execution time to confirm when it actually ran.

Related Base44 Issues

Can't fix it yourself?
Real developers can help.

You don't need to be technical. Just describe what's wrong and a verified developer will handle the rest.

Get Help