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
sidekiq => { queue_groups => '[\\'*\\'] * 4', },
OR
sidekiq => { queue_groups => "['*'] * 4", },
Both produce the same result: gitlab.rb: sidekiq['queue_groups'] = "['*'] * 4"
sidekiq['queue_groups'] = "['*'] * 4"
gitlab.rb: sidekiq['queue_groups'] = ['*'] * 4
sidekiq['queue_groups'] = ['*'] * 4
Notice: /Stage[main]/Gitlab::Service/Exec[gitlab_reconfigure]/returns: Notice: /Stage[main]/Gitlab::Service/Exec[gitlab_reconfigure]/returns: ================================================================================ Notice: /Stage[main]/Gitlab::Service/Exec[gitlab_reconfigure]/returns: Error executing action create on resource 'template[/opt/gitlab/sv/sidekiq/run]' Notice: /Stage[main]/Gitlab::Service/Exec[gitlab_reconfigure]/returns: ================================================================================ Notice: /Stage[main]/Gitlab::Service/Exec[gitlab_reconfigure]/returns: Notice: /Stage[main]/Gitlab::Service/Exec[gitlab_reconfigure]/returns: Chef::Mixin::Template::TemplateError Notice: /Stage[main]/Gitlab::Service/Exec[gitlab_reconfigure]/returns: ------------------------------------ Notice: /Stage[main]/Gitlab::Service/Exec[gitlab_reconfigure]/returns: undefined method `each' for "['*'] * 4":String
create
If I try:
sidekiq => { queue_groups => ['[\\'*\\'] * 4'], },
Gitlab.rb: sidekiq['queue_groups'] = ["['*'] * 4"]
sidekiq['queue_groups'] = ["['*'] * 4"]
The reconfigure doesn't error, but I also don't get 4 sideqik processes.
https://docs.gitlab.com/ee/administration/sidekiq/extra_sidekiq_processes.html
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Affected Puppet, Ruby, OS and module versions/distributions
How to reproduce (e.g Puppet code you use)
OR
What are you seeing
Both produce the same result:
gitlab.rb:
sidekiq['queue_groups'] = "['*'] * 4"
What behaviour did you expect instead
gitlab.rb:
sidekiq['queue_groups'] = ['*'] * 4
Output log
Notice: /Stage[main]/Gitlab::Service/Exec[gitlab_reconfigure]/returns:
Notice: /Stage[main]/Gitlab::Service/Exec[gitlab_reconfigure]/returns: ================================================================================
Notice: /Stage[main]/Gitlab::Service/Exec[gitlab_reconfigure]/returns: Error executing action
create
on resource 'template[/opt/gitlab/sv/sidekiq/run]'Notice: /Stage[main]/Gitlab::Service/Exec[gitlab_reconfigure]/returns: ================================================================================
Notice: /Stage[main]/Gitlab::Service/Exec[gitlab_reconfigure]/returns:
Notice: /Stage[main]/Gitlab::Service/Exec[gitlab_reconfigure]/returns: Chef::Mixin::Template::TemplateError
Notice: /Stage[main]/Gitlab::Service/Exec[gitlab_reconfigure]/returns: ------------------------------------
Notice: /Stage[main]/Gitlab::Service/Exec[gitlab_reconfigure]/returns: undefined method `each' for "['*'] * 4":String
Any additional information you'd like to impart
If I try:
Gitlab.rb:
sidekiq['queue_groups'] = ["['*'] * 4"]
The reconfigure doesn't error, but I also don't get 4 sideqik processes.
https://docs.gitlab.com/ee/administration/sidekiq/extra_sidekiq_processes.html
The text was updated successfully, but these errors were encountered: