19,510 questions
0
votes
0
answers
17
views
How to refresh a Zoho access token only when expired in a .NET Azure Timer Trigger (Isolated Process)?
I'm using a .NET 7 Azure Timer Trigger (Isolated Process) that runs every day at 10 am.
Zoho’s access token expires after 1 hour, so I want to cache the token in memory and only refresh it using the ...
0
votes
0
answers
24
views
Opensearch Unauthorised Issue
I am using AWS OpenSearch with fine-grained access control enabled. Initially, I was able to log in to the OpenSearch dashboard using my master username and password, and everything was working ...
1
vote
1
answer
37
views
Run Python-based service via crontab
I have a number of Python-based services on a Linux server that I start by running a .py file via a python3 bash command and that are supposed keep running indefinitely. One is a flask app, another is ...
0
votes
0
answers
19
views
Updating repeatable job's startDate/pattern does not update next run time (even after deleting and recreating job)
I'm using BullMQ (v5.56) to schedule repeatable jobs with a custom schedulerId as the job name.
When I create a job with repeat options like:
{
startDate: '2025-07-10T09:55:00.000Z',
pattern: '55 *...
0
votes
1
answer
55
views
Can't run cron with laravel command [duplicate]
I run: php artisan schedule:run
I get: INFO No scheduled commands are ready to run.
My routes code is:
<?php
use Illuminate\Foundation\Inspiring;
use Illuminate\Support\Facades\Artisan;
use ...
0
votes
1
answer
44
views
Splunk - Cron Expressesion - Configured for weekdays - getting triggered on weekend [closed]
I have Splunk alert configured for specific time (17:18 - 18 minutes past 5 afternoon) on weekdays.
I am using following cron expression
18 17 * * 1-5
Interpretation from crontab.guru - https://...
0
votes
1
answer
75
views
chmod() and utime error keep occurring in the site even after the permissions and ownerships are set
I am working on a client site, In the wordpress theme file I have added a cron.php file to perform some cron job functions. It was executing fine without any issues till last few days. When I checked ...
0
votes
0
answers
30
views
How to correctly schedule a task using crontab, PM2 and NodeJS?
I currently have a schedule set up using crontab that runs a file every morning using PM2 with the below command:
10 07 * * * export NODE_ENV=prod&& sudo -E pm2 start /pathToFile/file.js -n ...
0
votes
0
answers
23
views
Working with Edge Functions and Cron Jobs locally
I'm trying to implement som cron jobs which will invoke some of my edge functions.
Of course, first i need to do development locally, so i'm using local Supabase development studio with Docker, but ...
0
votes
0
answers
24
views
Cron Job custom php function called in Wordpress
I have a simple custom plugin that when I click on a button, it execute a simple function and return a number. My function work super well, but now I want to set it in a cron job. When I create the ...
1
vote
0
answers
59
views
Getting Error while using Cron Job Scheduler in Node.js
const parts = dateFormat.formatToParts(date).filter(part => {
'RangeError: Invalid time value'. at DateTimeFormat.formatToParts
()
at buidDateParts
getting error in Cron Job Scheduler using with ...
0
votes
0
answers
22
views
NestJS Cron Stuck when K8s Pod dies
I have a NestJS cron job running every 5 minutes, deployed as a single pod in AWS Kubernetes. Last week, due to an issue with the Node process, Kubernetes scaled down the pod and started a new one ...
0
votes
0
answers
33
views
Scheduler completion regular task Moodle Stuck 3.6.2
moodle version 3.6.2, php 7.2 nts, Windows
I using task scheduler for running cron daily, when i check on moodle scheduledtasks
I notice the task completion_regular_task is stuck ( when i run on web ...
1
vote
1
answer
105
views
Spring skip overlapping task in Scheduled cron by default. How can I pospone the task instead?
I have following job in spring boot application:
@Scheduled(cron = "0/5 * * * * *")
fun processDocumentsBatch() {
log.info("job has started")
Thread.sleep(7000)
log....
-1
votes
0
answers
19
views
Trouble with Twitter (X) post automation via EasyCron and Netlify
I've set up an automation system to publish posts on Twitter (X).
It’s built with an Express server deployed to Netlify, and it's triggered via EasyCron, which makes a request to a specific API ...