Skip to content

Commit

Permalink
feat (FTS3): change the default proxy lifetime to 36h
Browse files Browse the repository at this point in the history
  • Loading branch information
chaen committed Nov 17, 2023
1 parent 07e4c58 commit 60d291e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/DIRAC/DataManagementSystem/Agent/FTS3Agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,10 @@
AGENT_NAME = "DataManagement/FTS3Agent"

# Lifetime in seconds of the proxy we download for submission
PROXY_LIFETIME = 43200 # 12 hours
# Because we force the redelegation if only a third is left,
# and we want to have a quiet night (~12h)
# let's make the lifetime 12*3 hours
PROXY_LIFETIME = 36 * 3600 # 36 hours

# Instead of querying many jobs at once,
# which maximizes the possibility of race condition
Expand Down

0 comments on commit 60d291e

Please sign in to comment.