Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
Base Worker
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Workers
Base Worker
Merge requests
!30
Reload known ML classes when a 400 is received on creation
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Reload known ML classes when a 400 is received on creation
fix-24
into
master
Overview
0
Commits
2
Pipelines
1
Changes
1
Merged
Bastien Abadie
requested to merge
fix-24
into
master
4 years ago
Overview
0
Commits
2
Pipelines
1
Changes
1
Expand
Closes
#24 (closed)
Edited
4 years ago
by
Bastien Abadie
0
0
Merge request reports
Viewing commit
05b1e084
Prev
Next
Show latest version
1 file
+
17
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
05b1e084
Reload known ML classes when a 400 is received on creation
· 05b1e084
Bastien Abadie
authored
4 years ago
arkindex_worker/worker.py
+
17
−
4
Options
@@ -8,6 +8,7 @@ import uuid
from
enum
import
Enum
from
pathlib
import
Path
import
apistar
import
gnupg
import
yaml
from
apistar.exceptions
import
ErrorResponse
@@ -296,11 +297,23 @@ class ElementsWorker(BaseWorker):
ml_class_id
=
self
.
classes
[
corpus_id
].
get
(
ml_class
)
if
ml_class_id
is
None
:
logger
.
info
(
f
"
Creating ML class
{
ml_class
}
on corpus
{
corpus_id
}
"
)
response
=
self
.
api_client
.
request
(
"
CreateMLClass
"
,
id
=
corpus_id
,
body
=
{
"
name
"
:
ml_class
}
)
try
:
response
=
self
.
api_client
.
request
(
"
CreateMLClass
"
,
id
=
corpus_id
,
body
=
{
"
name
"
:
ml_class
}
)
logger
.
debug
(
f
"
Created ML class
{
response
[
'
id
'
]
}
"
)
except
apistar
.
exceptions
.
ErrorResponse
as
e
:
# Only reload for 400 errors
if
e
.
status_code
!=
400
:
raise
# Reload and make sure we have the class
self
.
load_corpus_classes
(
corpus_id
)
assert
(
ml_class
in
self
.
classes
[
corpus_id
]
),
"
Missing class {ml_class} even after reloading
"
ml_class_id
=
self
.
classes
[
corpus_id
][
ml_class
]
=
response
[
"
id
"
]
logger
.
debug
(
f
"
Created ML class
{
ml_class_id
}
"
)
return
ml_class_id
Loading