Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
fts-rest-flask
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Requirements
Jira
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
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
Code review analytics
Issue analytics
Insights
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
File Transfer Service
fts-rest-flask
Merge requests
!102
Added FTS_token option to CLI and removed access_token option
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Added FTS_token option to CLI and removed access_token option
FTS-1927_Modify_FTS_Client_to_send_FTS_submission_token
into
develop
Overview
0
Commits
1
Pipelines
2
Changes
3
Closed
Shubhangi Misra
requested to merge
FTS-1927_Modify_FTS_Client_to_send_FTS_submission_token
into
develop
1 year ago
Overview
0
Commits
1
Pipelines
2
Changes
3
Expand
Closes
FTS-1927
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
d79811bd
1 commit,
1 year ago
3 files
+
13
−
13
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
src/fts3/cli/base.py
+
4
−
4
Options
@@ -136,9 +136,9 @@ class Base:
help
=
"
do not validate the server certificate
"
,
)
self
.
opt_parser
.
add_option
(
"
--
access-
token
"
,
dest
=
"
access
_token
"
,
help
=
"
OAuth2 access token (supported only by some endpoints, takes precedence)
"
,
"
--
FTS_
token
"
,
dest
=
"
FTS
_token
"
,
help
=
"
FTS Token will be used to construct an identity for the connecting client
"
,
default
=
None
,
)
@@ -173,7 +173,7 @@ class Base:
ukey
=
self
.
options
.
ukey
,
ucert
=
self
.
options
.
ucert
,
verify
=
self
.
options
.
verify
,
access
_token
=
self
.
options
.
access
_token
,
FTS
_token
=
self
.
options
.
FTS
_token
,
capath
=
self
.
options
.
capath
,
user_agent
=
user_agent
,
)
Loading