We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
we should split this configuration to:
query_select_keys
additional_keys
this way, you can add an additional_keys which are not attributes. e.g
class User < ActiveRecord::Base def full_name "#{first_name} #{last_name}" end end
class UserSyncerWorker < Sidekiq::ActiveRecord::ManagerWorker sidekiq_delegate_task_to UserTaskWorker sidekiq_manager_options { :query_select_keys => [:first_name, :last_name], :additional_keys => [:full_name] } end
The text was updated successfully, but these errors were encountered:
@seuros /cc
Sorry, something went wrong.
seuros
No branches or pull requests
we should split this configuration to:
query_select_keys
additional_keys
- defaults toquery_select_keys
this way, you can add an additional_keys which are not attributes. e.g
The text was updated successfully, but these errors were encountered: