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

Checks for proper email configuration before sending error emails #1923

Merged
merged 8 commits into from Nov 23, 2016

Conversation

sklarsa
Copy link
Contributor

@sklarsa sklarsa commented Nov 17, 2016

Description

Currently, if a user did not configure email in the client.cfg or isn't pointing luigi to a config file at all, whenever a task runs that throws an error, a warning about a None parameter is shown:
/Users/steven/source/github/luigi/luigi/parameter.py:261: UserWarning: Parameter value None is not of type string. warnings.warn("Parameter value {0} is not of type string.".format(str(x)))

I was able to track down this warning to the email config task in luigi.notifications. Since the prefix and receiver tasks default to None, this warning is thrown when the email is instantiated and the parameter values are serialized.

Instead of changing the warning or email task directly, I decided to add code in luigi.notifications.send_error_email which checks to make sure that email is configured properly before attempting to send an error email in any context.

Motivation and Context

I believe that given a default use-case with no custom configs, luigi should not be throwing ambiguous warnings. This can confuse users, potentially creating the misconception that there is something wrong with a user's task or pipeline, when in fact it's an internal task that is throwing the warning.

Have you tested this? If so, how?

I created a task that always throws an error:

class TaskC(luigi.Task):

    def run(self):
        raise Exception("TEST")

    def complete(self):
        return False

Then I ran luigi TaskA --local-scheduler and saw the new warnings regarding the invalid configuration instead of an ambiguous parameter warning.

@mention-bot
Copy link

@sklarsa, thanks for your PR! By analyzing the history of the files in this pull request, we identified @daveFNbuck, @neilisaac and @jslovan to be potential reviewers.

Copy link
Contributor

@Tarrasch Tarrasch left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actually. We just recently deliberately removed the warning you get when not having configured [email], see #1908 (comment). Can you instead make PR that just get rids of the UserWarning: Parameter value None is not of type string annoyance?

@sklarsa
Copy link
Contributor Author

sklarsa commented Nov 18, 2016

Done

@Tarrasch
Copy link
Contributor

I actually meant to find what Parameter is set to None and instead set it to some other working default value like '' or whatever is suitable. :)

I don't think we should remove that best-practices warning. Although it would be so much better if it would point out where the Parameter was first defined ...

@sklarsa
Copy link
Contributor Author

sklarsa commented Nov 18, 2016

How's this?

@sklarsa
Copy link
Contributor Author

sklarsa commented Nov 18, 2016

I can look into that a little more. I don't think the parameter class
itself has any knowledge of what task it is in though... Perhaps we can
make the error message a little more detailed instead so it can be more
useful when running larger pipelines

On Nov 17, 2016 10:55 PM, "Arash Rouhani" notifications@github.com wrote:

I actually meant to find what Parameter is set to None and instead set it
to some other working default value like '' or whatever is suitable. :)

I don't think we should remove that best-practices warning. Although it
would be so much better if it would point out where the Parameter was first
defined ...


You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
#1923 (comment), or mute
the thread
https://github.com/notifications/unsubscribe-auth/AB1xRfZCZ63sw9QPKJjQgAvCBGMVWNBmks5q_SG-gaJpZM4K1u2B
.

@Tarrasch
Copy link
Contributor

Very good job! Thanks for fixing according to my feedback. :)


I don't think the parameter class itself has any knowledge of what task it is in though

You're thinking like a C++-programmer ^^. I wouldn't be surprised if there's something like my_object.__line_where_object_was_defined__ in python. Have you googled it? :)

@sklarsa
Copy link
Contributor Author

sklarsa commented Nov 18, 2016

I'll take a look at it but save it for a separate diff since it might take a while for me to come up with a relatively elegant solution

@Tarrasch
Copy link
Contributor

@sklarsa, Indeed, please save it for a future PR. However there seem to be some test error related to this change. Can you see if it can be fixed? :)

@sklarsa
Copy link
Contributor Author

sklarsa commented Nov 21, 2016

Tests passing

Copy link
Contributor

@Tarrasch Tarrasch left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry. Just 1 small change and I promise this is ready to be merged! :)

@@ -358,7 +358,8 @@ def _prefix(subject):
If the config has a special prefix for emails then this function adds
this prefix.
"""
if email().prefix is not None:
prefix = email().prefix
if prefix is not None and prefix != '':
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks. Though these two lines can be simplified to simply:

if email().prefix:

This is awesome. As we also get rid of the is not None antipattern in python!

@Tarrasch Tarrasch merged commit 3e8edf0 into spotify:master Nov 23, 2016
@Tarrasch
Copy link
Contributor

Finally. Thanks @sklarsa, if you could find a way to generally better point out where the non-string parameter comes from, that would be great. :)

@Tarrasch
Copy link
Contributor

@sklarsa, it would be so good if all parameters who "complain" also printed out where they were implemented. It seems be reasonably easy to implement. http://stackoverflow.com/a/22148022/621449, do you want to make a PR or at least create an issue mentioning this as a TODO?

@sklarsa
Copy link
Contributor Author

sklarsa commented Nov 29, 2016 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants