Schedulers stuck on processing #325

Closed
opened 2026-02-04 17:32:24 +03:00 by OVERLORD · 2 comments
Owner

Originally created by @Bufferless on GitHub (May 1, 2025).

Current Behavior

I'm using the latest versions of Pelican (v1.0.0-beta19) and Wings (v1.0.0-beta11). This issue has not received any responses on Discord, but it's critical for users who rely on schedulers for automation and task management. I've seen other people in the Discord have the same issue with no way to resolve

Expected Behavior

The scheduler should run its task then repeat.

Steps to Reproduce

Create a scheduler,
Create a Task
Wait for the task to run
Check on if its still processing.

Panel Version

v1.0.0-beta19

Wings Version

v1.0.0-beta11

Games and/or Eggs Affected

Minecraft and other Eggs

Error Logs


Is there an existing issue for this?

  • I have searched the existing issues before opening this issue.
  • I have provided all relevant details, including the specific game and Docker images I am using if this issue is related to running a server.
  • I have checked in the Discord server and believe this is a bug with the software, and not a configuration issue with my specific system.
Originally created by @Bufferless on GitHub (May 1, 2025). ### Current Behavior I'm using the latest versions of Pelican (v1.0.0-beta19) and Wings (v1.0.0-beta11). This issue has not received any responses on Discord, but it's critical for users who rely on schedulers for automation and task management. I've seen other people in the Discord have the same issue with no way to resolve ### Expected Behavior The scheduler should run its task then repeat. ### Steps to Reproduce Create a scheduler, Create a Task Wait for the task to run Check on if its still processing. ### Panel Version v1.0.0-beta19 ### Wings Version v1.0.0-beta11 ### Games and/or Eggs Affected Minecraft and other Eggs ### Error Logs ```bash ``` ### Is there an existing issue for this? - [x] I have searched the existing issues before opening this issue. - [x] I have provided all relevant details, including the specific game and Docker images I am using if this issue is related to running a server. - [x] I have checked in the Discord server and believe this is a bug with the software, and not a configuration issue with my specific system.
Author
Owner

@rmartinoscar commented on GitHub (May 1, 2025):

Hey make sure your cronjob & pelican-queue service are setup as following:

(crontab -l -u www-data 2>/dev/null; echo "* * * * * php /var/www/pelican/artisan schedule:run >> /dev/null 2>&1") | crontab -u www-data -
crontab -l -u www-data

Make sure www-data is your webserver user and that /var/www/pelican matches your install path.
Also check that www-data is the only user that has the job and its only present once.

For the service you can check using

/var/www/pelican/artisan p:environment:queue-service
systemctl status pelican-queue

Even if you already have the service go though the process again and overwrite it, it could be out of date.

Which kind of tasks are you trying to run ? (power, command, backup), If its backup which is your driver ? (wings, S3)
Please provide logs when you report an issue even if you don't think those are relevant.

@rmartinoscar commented on GitHub (May 1, 2025): Hey make sure your cronjob & pelican-queue service are setup as following: ```php (crontab -l -u www-data 2>/dev/null; echo "* * * * * php /var/www/pelican/artisan schedule:run >> /dev/null 2>&1") | crontab -u www-data - crontab -l -u www-data ``` Make sure www-data is your webserver user and that `/var/www/pelican` matches your install path. Also check that www-data is the only user that has the job and its only present once. For the service you can check using ```php /var/www/pelican/artisan p:environment:queue-service systemctl status pelican-queue ``` Even if you already have the service go though the process again and overwrite it, it could be out of date. Which kind of tasks are you trying to run ? (power, command, backup), If its backup which is your driver ? (wings, S3) Please provide logs when you report an issue even if you don't think those are relevant.
Author
Owner

@Bufferless commented on GitHub (May 1, 2025):

Thank you, I've seem to have gotten it working by creating the pelican-queue as it was not existing.

@Bufferless commented on GitHub (May 1, 2025): Thank you, I've seem to have gotten it working by creating the pelican-queue as it was not existing.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/panel#325