Skip to content
New issue

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

just fix typo #3724

Merged
merged 1 commit into from Apr 29, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/fluent/plugin_helper/service_discovery.rb
Expand Up @@ -44,7 +44,7 @@ def start

@discovery_manager.start
unless @discovery_manager.static_config?
timer_execute(@_plugin_helper_service_discovery_title, @_plugin_helper_service_discovery_iterval) do
timer_execute(@_plugin_helper_service_discovery_title, @_plugin_helper_service_discovery_interval) do
@discovery_manager.run_once
end
end
Expand Down Expand Up @@ -96,7 +96,7 @@ def service_discovery_rebalance
# @param custom_build_method [Proc]
def service_discovery_create_manager(title, configurations:, load_balancer: nil, custom_build_method: nil, interval: 3)
@_plugin_helper_service_discovery_title = title
@_plugin_helper_service_discovery_iterval = interval
@_plugin_helper_service_discovery_interval = interval

@discovery_manager = Fluent::PluginHelper::ServiceDiscovery::Manager.new(
log: log,
Expand Down