Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8851901
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T13:16:13+00:00 2026-06-14T13:16:13+00:00

I have the following configuration for my resque system (no rails just Sinatra base)

  • 0

I have the following configuration for my resque system (no rails just Sinatra base) where I have bunch of recurring jobs scheduled from a yml file

resque (1.23.0)
resque-scheduler (2.0.0)
resque-status (0.4.0)

The recurring schedule appears on the ‘Schedule’ tab and when I click on a ‘Queue Now’ button the status also appears on the ‘Statuses’ tab, the problem is that when the recurring jobs automatically run, they don’t appear on the ‘Statuses’ tab.. my resque_schedule.yml looks something like this

email_notifier:
  every: 5m
  custom_job_class: Process_Notification_Emails
  queue: email_notifier
  args: 
  description: "Process mail notifications"

Note: These scheduled jobs are actually running every 5 minutes and are behaving as expected,the only issue I’m having is that they don’t appear on the ‘Statuses’ tab unless I manually enqueue them

Any ideas what am I doing wrong here?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T13:16:14+00:00Added an answer on June 14, 2026 at 1:16 pm

    Support for resque-status (and other custom jobs)

    Some Resque extensions like resque-status use custom job classes with
    a slightly different API signature. Resque-scheduler isn’t trying to
    support all existing and future custom job classes, instead it
    supports a schedule flag so you can extend your custom class and make
    it support scheduled job.

    Let’s pretend we have a JobWithStatus class called FakeLeaderboard

    class FakeLeaderboard < Resque::JobWithStatus
      def perform
        # do something and keep track of the status
      end
    end
    

    And then a schedule:

    create_fake_leaderboards:
      cron: "30 6 * * 1"
      queue: scoring
      custom_job_class: FakeLeaderboard
      args:
      rails_env: demo
      description: "This job will auto-create leaderboards for our online demo and the status will update as the worker makes progress"
    

    If your extension doesn’t support scheduled job, you would need to
    extend the custom job class to support the #scheduled method:

    module Resque
      class JobWithStatus
        # Wrapper API to forward a Resque::Job creation API call into
        # a JobWithStatus call.
        def self.scheduled(queue, klass, *args)
          create(*args)
        end
      end
    end
    

    https://github.com/bvandenbos/resque-scheduler#support-for-resque-status-and-other-custom-jobs

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following configuration: Visual Studio Team System 2008 SQL Server Developer Edition
I have the following Powershell code: Add-Type -Assembly System.Configuration [ExeConfigurationFileMap] $configMap = New-Object ExeConfigurationFileMap
I have the following line of code called very often: var configValue = System.Configuration.ConfigurationManager.AppSettings[ConfigValueKey];
I have the following yml configuration for Doctrine under MySQL: Designer: tableName: designers columns:
I have the following configuration running: The host is a MacOSX Lion system running
I have the following Xml Configuration <system.serviceModel> <services> <service name=MyService.MyServiceREST behaviorConfiguration=MyServiceTypeBehaviors> <host> <baseAddresses> <add
I have the following configuration set in my factories.yml file... all: mailer: param: transport:
I have the following configuration. <location path=services> <system.web> <httpHandlers> <add path=* type=ServiceStack.WebHost.Endpoints.ServiceStackHttpHandlerFactory, ServiceStack verb=*
I have the following configuration for PHPMailer, which worked perfectly on my localhost machine,
I have the following configuration file for NHibernate : <?xml version=1.0 encoding=utf-8 ?> <hibernate-configuration

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.