Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
callidus
Machina Callida
Commits
a57fd5d5
Commit
a57fd5d5
authored
May 18, 2020
by
Konstantin Schulz
Browse files
introduce detailed logging for every database action
parent
516734c9
Pipeline
#11601
passed with stages
in 3 minutes and 46 seconds
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
mc_backend/mcserver/app/api/corpusListAPI.py
View file @
a57fd5d5
...
...
@@ -16,6 +16,7 @@ def get(last_update_time: int) -> Union[Response, ConnexionResponse]:
ui_cts
:
UpdateInfo
try
:
ui_cts
=
db
.
session
.
query
(
UpdateInfo
).
filter_by
(
resource_type
=
ResourceType
.
cts_data
.
name
).
first
()
db
.
session
.
commit
()
except
(
InvalidRequestError
,
OperationalError
):
db
.
session
.
rollback
()
return
NetworkService
.
make_json_response
(
None
)
...
...
mc_backend/mcserver/app/services/databaseService.py
View file @
a57fd5d5
...
...
@@ -20,6 +20,7 @@ class DatabaseService:
def
check_corpus_list_age
(
app
:
Flask
)
->
None
:
""" Checks whether the corpus list needs to be updated. If yes, it performs the update. """
ui_cts
:
UpdateInfo
=
db
.
session
.
query
(
UpdateInfo
).
filter_by
(
resource_type
=
ResourceType
.
cts_data
.
name
).
first
()
db
.
session
.
commit
()
if
ui_cts
is
None
:
return
else
:
...
...
mc_backend/mcserver/config.py
View file @
a57fd5d5
...
...
@@ -127,6 +127,7 @@ class Config(object):
SERVER_URI_VOCABULARY
=
SERVER_URI_BASE
+
"vocabulary"
# END endpoints
SQLALCHEMY_DATABASE_URI
=
os
.
environ
.
get
(
"DATABASE_URL"
)
or
DATABASE_URL_SQLITE
SQLALCHEMY_ECHO
=
True
SQLALCHEMY_TRACK_MODIFICATIONS
=
False
STATIC_EXERCISES_REPOSITORY_URL
=
"https://scm.cms.hu-berlin.de/callidus/machina-callida/-/archive/master/machina-callida-master.zip?path=mc_frontend%2Fsrc%2Fassets%2Fh5p"
STOP_WORDS_LATIN_PATH
=
os
.
path
.
join
(
CACHE_DIRECTORY
,
"stop_words_latin.json"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment