-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Add null check for logger
#1332
Conversation
I've added Maybe root cause: See also |
LGTM. |
I've added test and pushed changes. |
assert_nil(obj.log) | ||
end | ||
|
||
test 'nothing raised if obsoleted parameter is configured' do |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This test case shows that "nothing raised", but test code does "assert_raise". Which one is correct?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wow, I've fixed 🙇
@okkez could you rebase this branch on master and push again? CI jobs are failing with many reasons which are already solved in other pull-requests. |
If plugin uses `config_param :name, :string, deprecated: "This is deprecated"` then we cannot use the plugin with plugins using v0.12 compatible layer.
9846ef4
to
ae7db9c
Compare
Rebased and pushed. |
LGTM. Thank you! |
If plugin uses
config_param :name, :string, deprecated: "This is deprecated"
then we cannot use the plugin with plugins using v0.12compatible layer.