8000 [FSSDK-9509] Update http_project_config_manager.rb with soft log warning about polling interval < 30s by Mat001 · Pull Request #338 · optimizely/ruby-sdk · GitHub
[go: up one dir, main page]

Skip to content

[FSSDK-9509] Update http_project_config_manager.rb with soft log warning about polling interval < 30s #338

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

Merged
merged 5 commits into from
Sep 25, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update w single quotes
  • Loading branch information
Mat001 authored Sep 25, 2023
commit 53fffd083afde072701f18e17c38e814241ae8c3
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ def polling_interval(polling_interval)
unless polling_interval.positive? && polling_interval < 30
@logger.log(
Logger::WARNING,
"Polling intervals below 30 seconds are not recommended."
'Polling intervals below 30 seconds are not recommended.'
)
end

Expand Down
0