refactor(chalice): fixes and cleaning
This commit is contained in:
parent
447a2490ef
commit
70390920cd
4 changed files with 5 additions and 3 deletions
|
|
@ -2,8 +2,8 @@ import json
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
import schemas
|
import schemas
|
||||||
from chalicelib.core import metadata, projects
|
from chalicelib.core import metadata
|
||||||
from chalicelib.utils import pg_client, helper, ch_client, exp_ch_helper
|
from chalicelib.utils import helper, ch_client, exp_ch_helper
|
||||||
from . import sessions_favorite, sessions_search_legacy, sessions_ch as sessions, sessions_legacy_mobil
|
from . import sessions_favorite, sessions_search_legacy, sessions_ch as sessions, sessions_legacy_mobil
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
|
||||||
1
ee/api/.gitignore
vendored
1
ee/api/.gitignore
vendored
|
|
@ -279,6 +279,7 @@ Pipfile.lock
|
||||||
/chalicelib/core/errors/errors_pg.py
|
/chalicelib/core/errors/errors_pg.py
|
||||||
/chalicelib/core/errors/errors_ch.py
|
/chalicelib/core/errors/errors_ch.py
|
||||||
/chalicelib/core/errors/errors_details.py
|
/chalicelib/core/errors/errors_details.py
|
||||||
|
/chalicelib/core/notes.py
|
||||||
/chalicelib/utils/contextual_validators.py
|
/chalicelib/utils/contextual_validators.py
|
||||||
/routers/subs/product_analytics.py
|
/routers/subs/product_analytics.py
|
||||||
/schemas/product_analytics.py
|
/schemas/product_analytics.py
|
||||||
|
|
|
||||||
|
|
@ -99,6 +99,7 @@ rm -rf ./chalicelib/core/errors/modules
|
||||||
rm -rf ./chalicelib/core/errors/errors_pg.py
|
rm -rf ./chalicelib/core/errors/errors_pg.py
|
||||||
rm -rf ./chalicelib/core/errors/errors_ch.py
|
rm -rf ./chalicelib/core/errors/errors_ch.py
|
||||||
rm -rf ./chalicelib/core/errors/errors_details.py
|
rm -rf ./chalicelib/core/errors/errors_details.py
|
||||||
|
rm -rf ./chalicelib/core/notes.py
|
||||||
rm -rf ./chalicelib/utils/contextual_validators.py
|
rm -rf ./chalicelib/utils/contextual_validators.py
|
||||||
rm -rf ./routers/subs/product_analytics.py
|
rm -rf ./routers/subs/product_analytics.py
|
||||||
rm -rf ./schemas/product_analytics.py
|
rm -rf ./schemas/product_analytics.py
|
||||||
|
|
@ -18,7 +18,7 @@ apscheduler==3.11.0
|
||||||
|
|
||||||
# TODO: enable after xmlsec fix https://github.com/xmlsec/python-xmlsec/issues/252
|
# TODO: enable after xmlsec fix https://github.com/xmlsec/python-xmlsec/issues/252
|
||||||
#--no-binary is used to avoid libxml2 library version incompatibilities between xmlsec and lxml
|
#--no-binary is used to avoid libxml2 library version incompatibilities between xmlsec and lxml
|
||||||
|
python3-saml==1.16.0 --no-binary=lxml
|
||||||
python-multipart==0.0.20
|
python-multipart==0.0.20
|
||||||
|
|
||||||
redis==5.2.1
|
redis==5.2.1
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue