Giter VIP home page Giter VIP logo

Comments (2)

capsterx avatar capsterx commented on September 3, 2024 1

I had to change the code, one including SidekiqUniqueJobs got me variables, but imported a reflect that was not compatible. Also using Sidekiq.server? prevented reschedule from working because it was called from sidekiq

module Locks
  class UntilAndWhileExecutingServerArgs < SidekiqUniqueJobs::Lock::UntilAndWhileExecuting                 
    class RuntimeLock < SidekiqUniqueJobs::Lock::WhileExecuting                                            
    def runtime_lock
      new_item = item.dup
      new_item[SidekiqUniqueJobs::LOCK_ARGS] = Object.const_get(item[SidekiqUniqueJobs::CLASS])            
        .sidekiq_options[SidekiqUniqueJobs::LOCK_ARGS_METHOD]
        .call(item[SidekiqUniqueJobs::ARGS], side: :server)
      new_item[SidekiqUniqueJobs::LOCK_DIGEST] = SidekiqUniqueJobs::LockDigest.call(new_item)              
      @runtime_lock ||= SidekiqUniqueJobs::Lock::WhileExecuting.new(new_item, callback, redis_pool)                                    
    end               
  end               
end  
class Worker
   include Sidekiq::Worker
   sidekiq_options on_conflict: { server: :reschedule },
                  lock: :until_and_while_executing_server_args,
                  lock_args_method: lambda { |args, side: :client|
                    if side == :server
                      []
                    else
                      args
                    end
                  }
end

from sidekiq-unique-jobs.

capsterx avatar capsterx commented on September 3, 2024

We had to roll this back as it was giving an error
gems/sidekiq-unique-jobs-7.1.8/lib/sidekiq_unique_jobs/lock/until_and_while_executing.rb:49 rescue in execute
ems/sidekiq-unique-jobs-7.1.8/lib/sidekiq_unique_jobs/sidekiq_unique_jobs.rb:291 reflect
ArgumentError ยท wrong number of arguments (given 2, expected 0)

from sidekiq-unique-jobs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.