feat(chalice): errors changes
This commit is contained in:
parent
9b8c09cf54
commit
98aab1f650
5 changed files with 5 additions and 0 deletions
1
ee/api/.gitignore
vendored
1
ee/api/.gitignore
vendored
|
|
@ -182,6 +182,7 @@ Pipfile
|
|||
/chalicelib/core/announcements.py
|
||||
/chalicelib/core/autocomplete.py
|
||||
/chalicelib/core/collaboration_slack.py
|
||||
/chalicelib/core/errors.py
|
||||
/chalicelib/core/errors_favorite_viewed.py
|
||||
/chalicelib/core/events.py
|
||||
/chalicelib/core/events_ios.py
|
||||
|
|
|
|||
|
|
@ -4,6 +4,8 @@ if config("LEGACY_SEARCH", cast=bool, default=False):
|
|||
print(">>> Using legacy search")
|
||||
from . import autocomplete as autocomplete
|
||||
from . import sessions as sessions
|
||||
from . import errors as errors
|
||||
else:
|
||||
from . import autocomplete_ee as autocomplete
|
||||
from . import sessions_ee as sessions
|
||||
from . import errors_ee as errors
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@ rm -rf ./chalicelib/core/alerts_processor.py
|
|||
rm -rf ./chalicelib/core/announcements.py
|
||||
rm -rf ./chalicelib/core/autocomplete.py
|
||||
rm -rf ./chalicelib/core/collaboration_slack.py
|
||||
rm -rf ./chalicelib/core/errors.py
|
||||
rm -rf ./chalicelib/core/errors_favorite_viewed.py
|
||||
rm -rf ./chalicelib/core/events.py
|
||||
rm -rf ./chalicelib/core/events_ios.py
|
||||
|
|
|
|||
|
|
@ -150,6 +150,7 @@ CREATE TABLE IF NOT EXISTS autocomplete
|
|||
ORDER BY (project_id, type, value)
|
||||
TTL _timestamp + INTERVAL 1 MONTH;
|
||||
|
||||
-- TODO: remove this table
|
||||
CREATE TABLE IF NOT EXISTS errors
|
||||
(
|
||||
error_id String,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue