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

DOCS-#4466: Recommend GitHub issues over bug_reports@modin.org. #4474

Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions docs/release_notes/release_notes-0.15.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ Key Features and Updates
* DOCS-#4296: Fix docs warnings (#4297)
* DOCS-#4388: Turn off fail_on_warning option for docs build (#4389)
* DOCS-#4469: Say that commit messages can start with PERF (#4470).
* DOCS-#4466: Recommend GitHub issues over bug_reports@modin.org (#4474).
* DOCS-#4487: Recommend GitHub issues over feature_requests@modin.org (#4489).
* Dependencies
* FIX-#4327: Update min pin for xgboost version (#4328)
Expand Down
6 changes: 4 additions & 2 deletions modin/core/io/text/excel_dispatcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,10 @@ def _read(cls, io, **kwargs):
return cls.single_worker_read(io, **kwargs)

warnings.warn(
"Parallel `read_excel` is a new feature! Please email "
+ "bug_reports@modin.org if you run into any problems."
"Parallel `read_excel` is a new feature! If you run into any "
+ "problems, please visit https://github.com/modin-project/modin/issues. "
+ "If you find a new issue and can't file it on GitHub, please "
+ "email bug_reports@modin.org."
)

# NOTE: ExcelReader() in read-only mode does not close file handle by itself
Expand Down
6 changes: 4 additions & 2 deletions modin/error_message.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,10 @@ def catch_bugs_and_request_email(cls, failure_condition, extra_log=""):
if failure_condition:
raise Exception(
"Internal Error. "
+ "Please email bug_reports@modin.org with the traceback and command that"
+ f" caused this error.\n{extra_log}"
+ "Please visit https://github.com/modin-project/modin/issues "
+ "to file an issue with the traceback and the command that "
+ "caused this error. If you can't file a GitHub issue, "
+ f"please email bug_reports@modin.org.\n{extra_log}"
)

@classmethod
Expand Down