如何设置Sidekiq作业每隔十分钟运行一次,直到23:59

时间:2017-09-14 17:11:59

标签: ruby-on-rails cron sidekiq

我在sidekiq设立这个工作,每天每10分钟运行一次。

问题是我需要它在23:59运行而不是在00:00运行。 是否可以在cron中指定此异常?

var app = angular.module('myApp', []);

app.controller('MyController', function MyController($scope) {
  $scope.onChange = function() {
    if ($scope.obj) {
      if ($scope.obj.first || $scope.obj.second || $scope.obj.third) {
        $scope.myForm.one.$setValidity("Atleast one checkbox needs to be selected", true);
      } else {
        $scope.myForm.one.$setValidity("Atleast one checkbox needs to be selected", false);
      }
    } else {
      $scope.myForm.one.$setValidity("Atleast one checkbox needs to be selected", false);
    }
  }
});

1 个答案:

答案 0 :(得分:1)

您可以添加两个调度程序规则。一个 - 几乎和你的一样: TEMPLATES = [ { 'BACKEND': 'django.templates.backends.django.DjangoTemplates', 'DIRS': [], 'APP_DIRS': True, 'OPTIONS': { 'context_processors': [ 'django.templates.context_processors.debug', 'django.templates.context_processors.request', 'django.contrib.auth.context_processors.auth', 'django.contrib.messages.context_processors.messages', ], }, }, ] 但是0到23小时。

过去23小时的第二条规则是这样的 cron: '*/10 0-23 * * *'