Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Setra Client
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
it-bott-integrasjoner
Setra Client
Commits
06c626ad
Commit
06c626ad
authored
4 years ago
by
Petr Kalashnikov
Browse files
Options
Downloads
Patches
Plain Diff
Fix endpoint linjk forming for batch_complete
parent
3cfed2fc
No related branches found
No related tags found
1 merge request
!7
OM46, del 1: Support batch_complete endpoint from setra
Pipeline
#57288
failed
4 years ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
setra_client/client.py
+2
-5
2 additions, 5 deletions
setra_client/client.py
with
2 additions
and
5 deletions
setra_client/client.py
+
2
−
5
View file @
06c626ad
...
...
@@ -92,11 +92,8 @@ class SetraEndpoints:
"""
URL for Batch endpoint
"""
if
batch_id
is
None
:
return
urllib
.
parse
.
urljoin
(
self
.
baseurl
,
self
.
batch_complete_url
)
else
:
return
urllib
.
parse
.
urljoin
(
self
.
baseurl
,
'
/
'
.
join
((
self
.
batch_complete_url
,
batch_id
)))
return
urllib
.
parse
.
urljoin
(
self
.
baseurl
,
'
/
'
.
join
((
self
.
batch_complete_url
,
batch_id
)))
class
SetraClient
(
object
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment