-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7292 from RasaHQ/fix-minor-issues-filter-sentry
Iterate on Sentry filtering
- Loading branch information
Showing
18 changed files
with
304 additions
and
97 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Improve error handling and Sentry tracking: | ||
- Raise `MarkdownException` when training data in Markdown format cannot be read. | ||
- Raise `InvalidEntityFormatException` error instead of `json.JSONDecodeError` when entity format is in valid | ||
in training data. | ||
- Gracefully handle empty sections in endpoint config files. | ||
- Introduce `ConnectionException` error and raise it when `TrackerStore` and `EventBroker` | ||
cannot connect to 3rd party services, instead of raising exceptions from 3rd party libraries. | ||
- Improve `rasa.shared.utils.common.class_from_module_path` function by making sure it always returns a class. | ||
The function currently raises a deprecation warning if it detects an anomaly. | ||
- Ignore `MemoryError` and `asyncio.CancelledError` in Sentry. | ||
- `rasa.shared.utils.validation.validate_training_data` now raises a `SchemaValidationError` when validation fails | ||
(this error inherits `jsonschema.ValidationError`, ensuring backwards compatibility). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,3 +23,4 @@ tracker_store: | |
#db: rasa | ||
#user: username | ||
#password: password | ||
empty: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.