Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
File Transfer Service
fts-rest
Commits
8d4ee7f6
Commit
8d4ee7f6
authored
Dec 02, 2016
by
Alejandro Alvarez Ayllon
Browse files
FTS-817
: agent_dn => staging_host
parent
7d18eba6
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/fts3/model/file.py
View file @
8d4ee7f6
...
...
@@ -40,7 +40,7 @@ class File(Base):
transfer_host
=
Column
(
String
(
255
))
source_surl
=
Column
(
String
(
1100
))
dest_surl
=
Column
(
String
(
1100
))
agent_dn
=
Column
(
String
(
1024
))
staging_host
=
Column
(
String
(
1024
))
reason
=
Column
(
String
(
2048
))
recoverable
=
Column
(
'current_failures'
,
Boolean
)
filesize
=
Column
(
Float
)
...
...
@@ -87,7 +87,7 @@ class ArchivedFile(Base):
transferhost
=
Column
(
String
(
255
))
source_surl
=
Column
(
String
(
1100
))
dest_surl
=
Column
(
String
(
1100
))
agent_dn
=
Column
(
String
(
1024
))
staging_host
=
Column
(
String
(
1024
))
reason
=
Column
(
String
(
2048
))
current_failures
=
Column
(
Integer
)
filesize
=
Column
(
Float
)
...
...
src/fts3/model/job.py
View file @
8d4ee7f6
...
...
@@ -81,7 +81,6 @@ class ArchivedJob(Base):
job_params
=
Column
(
String
(
255
))
submit_host
=
Column
(
String
(
255
))
user_dn
=
Column
(
String
(
1024
))
agent_dn
=
Column
(
String
(
1024
))
cred_id
=
Column
(
String
(
100
))
vo_name
=
Column
(
String
(
50
))
reason
=
Column
(
String
(
2048
))
...
...
src/fts3rest/fts3rest/lib/JobBuilder.py
View file @
8d4ee7f6
...
...
@@ -426,7 +426,6 @@ class JobBuilder(object):
retry_delay
=
int
(
self
.
params
[
'retry_delay'
]),
job_params
=
self
.
params
[
'gridftp'
],
submit_host
=
socket
.
getfqdn
(),
agent_dn
=
'rest'
,
user_dn
=
None
,
voms_cred
=
None
,
vo_name
=
None
,
...
...
@@ -522,7 +521,6 @@ class JobBuilder(object):
retry_delay
=
int
(
self
.
params
[
'retry_delay'
]),
job_params
=
self
.
params
[
'gridftp'
],
submit_host
=
socket
.
getfqdn
(),
agent_dn
=
'rest'
,
user_dn
=
None
,
voms_cred
=
None
,
vo_name
=
None
,
...
...
Write
Preview
Supports
Markdown
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