Print

Print


Well, no it's quite a bit different (though the ssame result). This time 
you did get to cms-xrd-global.cern.ch which redirected you to 
xrootd.ba.infn.it. Now, that machine should have redirected you to 
cms02.lcg.cscs.ch but instead it never responded. So, the client tried 
again but this time it timed out (apparently that xrootd was totally dead 
at the time). This was tried several times (btw the IP address was 
correct and it was IPv4). So, we go back to cms-xrd-global.cern.ch and ask 
for some other host and we get redirected to 
xrootd-cms-redir-01.cr.cnaf.infn.it We try to connect using an IPv4 
address (it also has an IPv6 one). However, that connection timed out as 
well. Note that this redirector should have redirected you to 
cms02.lcg.cscs.ch if it were responding. So, back to the cms redirector to 
ask for something other than the two failing hosts. This time you are sent 
to xrootd-redic.pi.infn.it which should have reditected you to 
se-xrd01.jinr-t1.ru that would then redirect you to se-xrd01.jinr-t1.ru ut 
that didn't happen. Unfortunately, there were no more options within the 
overall timeout  and it was deemed that you weren't making any progress 
after numerous attempts so  you got an operation expired.

Mind you, all of this worked fine for me so it may have been a bad day for 
Italy at the time but surely the Italian hosts just were not responding 
13:17:56 but were at 20:26.

I suppose you can try again to see if this was simply a transient failure.

Andy

On Mon, 8 Oct 2018, Valentin Kuznetsov wrote:

> Here is new round, my environment
> ```
> env | egrep "^Xrd|^XRD"
> XRD_NETWORKSTACK=IPv4
> XrdSecGSIUSERPROXY=/data/vk/proxy
> XRD_LOGLEVEL=Dump
> XrdSecDEBUG=2
> ```
>
> code:
> ```
> from XRootD import client
> from XRootD.client.flags import OpenFlags
> f=client.File()
> redirector='root://cms-xrd-global.cern.ch'
> #redirector='root://xrootd-cms.infn.it'
> #redirector='root://cmsxrootd.fnal.gov'
> fin='%s//store/data/Run2018C/Tau/NANOAOD/14Sep2018_ver3-v1/60000/6FA4CC7C-8982-DE4C-BEED-C90413312B35.root' % redirector
> print(fin)
> data=f.open(fin, OpenFlags.READ)
> print("data", data)
> ```
>
> and output (I waited for code to finish by itself without any timeouts):
> ```
> [2018-10-08 12:47:41.993259 -0400][Warning][Utility           ] Unable to process global config file: [ERROR] OS Error: No such file or directory
> [2018-10-08 12:47:41.993546 -0400][Debug  ][Utility           ] Unable to process user config file: [ERROR] OS Error: No such file or directory
> [2018-10-08 12:47:41.993669 -0400][Info   ][Utility           ] Env: Importing from shell XRD_NETWORKSTACK=IPv4 as NetworkStack
> [2018-10-08 12:47:41.993704 -0400][Debug  ][PlugInMgr         ] Initializing plug-in manager...
> [2018-10-08 12:47:41.993715 -0400][Debug  ][PlugInMgr         ] No default plug-in, loading plug-in configs...
> [2018-10-08 12:47:41.993723 -0400][Debug  ][PlugInMgr         ] Processing plug-in definitions in /etc/xrootd/client.plugins.d...
> [2018-10-08 12:47:41.993740 -0400][Debug  ][PlugInMgr         ] Unable to process directory /etc/xrootd/client.plugins.d: [ERROR] OS Error: No such file or directory
> [2018-10-08 12:47:41.993809 -0400][Debug  ][PlugInMgr         ] Processing plug-in definitions in /home/kuznetv/.xrootd/client.plugins.d...
> [2018-10-08 12:47:41.993863 -0400][Dump   ][PlugInMgr         ] Processing: /home/kuznetv/.xrootd/client.plugins.d/client-plugin.conf
> [2018-10-08 12:47:41.993914 -0400][Debug  ][PlugInMgr         ] Unable to find 'lib' key in the config file /home/kuznetv/.xrootd/client.plugins.d/client-plugin.conf, ignoring this config
> [2018-10-08 12:47:42.010680 -0400][Debug  ][Poller            ] Available pollers: built-in
> [2018-10-08 12:47:42.010712 -0400][Debug  ][Poller            ] Attempting to create a poller according to preference: built-in
> [2018-10-08 12:47:42.010724 -0400][Debug  ][Poller            ] Creating poller: built-in
> [2018-10-08 12:47:42.010738 -0400][Debug  ][Poller            ] Creating and starting the built-in poller...
> [2018-10-08 12:47:42.010862 -0400][Debug  ][Poller            ] Using 1 poller threads
> [2018-10-08 12:47:42.010882 -0400][Debug  ][TaskMgr           ] Starting the task manager...
> [2018-10-08 12:47:42.010920 -0400][Debug  ][TaskMgr           ] Task manager started
> [2018-10-08 12:47:42.010930 -0400][Debug  ][JobMgr            ] Starting the job manager...
> [2018-10-08 12:47:42.011006 -0400][Debug  ][JobMgr            ] Job manager started, 3 workers
> [2018-10-08 12:47:42.011017 -0400][Debug  ][TaskMgr           ] Registering task: "FileTimer task" to be run at: [2018-10-08 12:47:42 -0400]
> [2018-10-08 12:47:42.011101 -0400][Dump   ][Utility           ] URL: root://cms-xrd-global.cern.ch//store/data/Run2018C/Tau/NANOAOD/14Sep2018_ver3-v1/60000/6FA4CC7C-8982-DE4C-BEED-C90413312B35.root
> [2018-10-08 12:47:42.011101 -0400][Dump   ][Utility           ] Protocol:  root
> [2018-10-08 12:47:42.011101 -0400][Dump   ][Utility           ] User Name:
> [2018-10-08 12:47:42.011101 -0400][Dump   ][Utility           ] Password:
> [2018-10-08 12:47:42.011101 -0400][Dump   ][Utility           ] Host Name: cms-xrd-global.cern.ch
> [2018-10-08 12:47:42.011101 -0400][Dump   ][Utility           ] Port:      1094
> [2018-10-08 12:47:42.011101 -0400][Dump   ][Utility           ] Path:      /store/data/Run2018C/Tau/NANOAOD/14Sep2018_ver3-v1/60000/6FA4CC7C-8982-DE4C-BEED-C90413312B35.root
> [2018-10-08 12:47:42.011145 -0400][Dump   ][Utility           ] URL: root://cms-xrd-global.cern.ch//store/data/Run2018C/Tau/NANOAOD/14Sep2018_ver3-v1/60000/6FA4CC7C-8982-DE4C-BEED-C90413312B35.root
> [2018-10-08 12:47:42.011145 -0400][Dump   ][Utility           ] Protocol:  root
> [2018-10-08 12:47:42.011145 -0400][Dump   ][Utility           ] User Name:
> [2018-10-08 12:47:42.011145 -0400][Dump   ][Utility           ] Password:
> [2018-10-08 12:47:42.011145 -0400][Dump   ][Utility           ] Host Name: cms-xrd-global.cern.ch
> [2018-10-08 12:47:42.011145 -0400][Dump   ][Utility           ] Port:      1094
> [2018-10-08 12:47:42.011145 -0400][Dump   ][Utility           ] Path:      /store/data/Run2018C/Tau/NANOAOD/14Sep2018_ver3-v1/60000/6FA4CC7C-8982-DE4C-BEED-C90413312B35.root
> [2018-10-08 12:47:42.011164 -0400][Debug  ][File              ] [0xd2ad56a0@root://cms-xrd-global.cern.ch:1094//store/data/Run2018C/Tau/NANOAOD/14Sep2018_ver3-v1/60000/6FA4CC7C-8982-DE4C-BEED-C90413312B35.root] Sending an open command
> [2018-10-08 12:47:42.011218 -0400][Dump   ][XRootD            ] [cms-xrd-global.cern.ch:1094] Sending message kXR_open (file: /store/data/Run2018C/Tau/NANOAOD/14Sep2018_ver3-v1/60000/6FA4CC7C-8982-DE4C-BEED-C90413312B35.root, mode: 00, flags: kXR_open_read kXR_async kXR_retstat )
> [2018-10-08 12:47:42.011256 -0400][Dump   ][Utility           ] URL: cms-xrd-global.cern.ch:1094
> [2018-10-08 12:47:42.011256 -0400][Dump   ][Utility           ] Protocol:  root
> [2018-10-08 12:47:42.011256 -0400][Dump   ][Utility           ] User Name:
> [2018-10-08 12:47:42.011256 -0400][Dump   ][Utility           ] Password:
> [2018-10-08 12:47:42.011256 -0400][Dump   ][Utility           ] Host Name: cms-xrd-global.cern.ch
> [2018-10-08 12:47:42.011256 -0400][Dump   ][Utility           ] Port:      1094
> [2018-10-08 12:47:42.011256 -0400][Dump   ][Utility           ] Path:
> [2018-10-08 12:47:42.011283 -0400][Debug  ][PostMaster        ] Creating new channel to: cms-xrd-global.cern.ch:1094 1 stream(s)
> [2018-10-08 12:47:42.011312 -0400][Debug  ][PostMaster        ] [cms-xrd-global.cern.ch:1094 #0] Stream parameters: Network Stack: IPv4, Connection Window: 120, ConnectionRetry: 5, Stream Error Widnow: 1800
> [2018-10-08 12:47:42.017062 -0400][Debug  ][TaskMgr           ] Registering task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" to be run at: [2018-10-08 12:47:57 -0400]
> [2018-10-08 12:47:42.017097 -0400][Dump   ][PostMaster        ] [cms-xrd-global.cern.ch:1094 #0] Sending message kXR_open (file: /store/data/Run2018C/Tau/NANOAOD/14Sep2018_ver3-v1/60000/6FA4CC7C-8982-DE4C-BEED-C90413312B35.root, mode: 00, flags: kXR_open_read kXR_async kXR_retstat ) (0xd2ac1c60) through substream 0 expecting answer at 0
> [2018-10-08 12:47:42.133024 -0400][Debug  ][PostMaster        ] [cms-xrd-global.cern.ch:1094] Found 2 address(es): [::ffff:188.184.161.66]:1094, [::ffff:188.184.67.41]:1094
> [2018-10-08 12:47:42.133068 -0400][Debug  ][AsyncSock         ] [cms-xrd-global.cern.ch:1094 #0.0] Attempting connection to [::ffff:188.184.67.41]:1094
> [2018-10-08 12:47:42.133117 -0400][Debug  ][Poller            ] Adding socket 0xd2ab4890 to the poller
> [2018-10-08 12:47:42.246117 -0400][Debug  ][AsyncSock         ] [cms-xrd-global.cern.ch:1094 #0.0] Async connection call returned
> [2018-10-08 12:47:42.246161 -0400][Debug  ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Sending out the initial hand shake + kXR_protocol
> [2018-10-08 12:47:42.246206 -0400][Dump   ][AsyncSock         ] [cms-xrd-global.cern.ch:1094 #0.0] Wrote a message:  (0xbc000950), 44 bytes
> [2018-10-08 12:47:42.359179 -0400][Dump   ][XRootDTransport   ] [msg: 0xbc000950] Expecting 8 bytes of message body
> [2018-10-08 12:47:42.359213 -0400][Dump   ][AsyncSock         ] [cms-xrd-global.cern.ch:1094 #0.0] Received message header, size: 8
> [2018-10-08 12:47:42.359224 -0400][Dump   ][AsyncSock         ] [cms-xrd-global.cern.ch:1094 #0.0] Received a message of 16 bytes
> [2018-10-08 12:47:42.359238 -0400][Debug  ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Got the server hand shake response (type: manager [], protocol version 310)
> [2018-10-08 12:47:42.359251 -0400][Dump   ][XRootDTransport   ] [msg: 0xbc000950] Expecting 8 bytes of message body
> [2018-10-08 12:47:42.359259 -0400][Dump   ][AsyncSock         ] [cms-xrd-global.cern.ch:1094 #0.0] Received message header, size: 8
> [2018-10-08 12:47:42.359267 -0400][Dump   ][AsyncSock         ] [cms-xrd-global.cern.ch:1094 #0.0] Received a message of 16 bytes
> [2018-10-08 12:47:42.359276 -0400][Debug  ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] kXR_protocol successful (type: manager [meta], protocol version 310)
> [2018-10-08 12:47:42.371342 -0400][Debug  ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Sending out kXR_login request, username: kuznetv, cgi: ?xrd.cc=us&xrd.tz=-5&xrd.appname=python3.6&xrd.info=&xrd.hostname=goofy&xrd.rn=v4.8.4, dual-stack: true, private IPv4: false, private IPv6: true
> [2018-10-08 12:47:42.371426 -0400][Dump   ][AsyncSock         ] [cms-xrd-global.cern.ch:1094 #0.0] Wrote a message:  (0xbc000b40), 109 bytes
> [2018-10-08 12:47:42.484227 -0400][Dump   ][XRootDTransport   ] [msg: 0xbc000b40] Expecting 16 bytes of message body
> [2018-10-08 12:47:42.484263 -0400][Dump   ][AsyncSock         ] [cms-xrd-global.cern.ch:1094 #0.0] Received message header, size: 8
> [2018-10-08 12:47:42.484276 -0400][Dump   ][AsyncSock         ] [cms-xrd-global.cern.ch:1094 #0.0] Received a message of 24 bytes
> [2018-10-08 12:47:42.484292 -0400][Debug  ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Logged in, session: ac1a04008ff5010059010000671c0400
> [2018-10-08 12:47:42.484306 -0400][Debug  ][PostMaster        ] [cms-xrd-global.cern.ch:1094 #0] Stream 0 connected.
> [2018-10-08 12:47:42.484317 -0400][Debug  ][Utility           ] Monitor library name not set. No monitoring
> [2018-10-08 12:47:42.484361 -0400][Dump   ][AsyncSock         ] [cms-xrd-global.cern.ch:1094 #0.0] Wrote a message: kXR_open (file: /store/data/Run2018C/Tau/NANOAOD/14Sep2018_ver3-v1/60000/6FA4CC7C-8982-DE4C-BEED-C90413312B35.root, mode: 00, flags: kXR_open_read kXR_async kXR_retstat ) (0xd2ac1c60), 122 bytes
> [2018-10-08 12:47:42.484381 -0400][Dump   ][AsyncSock         ] [cms-xrd-global.cern.ch:1094 #0.0] Successfully sent message: kXR_open (file: /store/data/Run2018C/Tau/NANOAOD/14Sep2018_ver3-v1/60000/6FA4CC7C-8982-DE4C-BEED-C90413312B35.root, mode: 00, flags: kXR_open_read kXR_async kXR_retstat ) (0xd2ac1c60).
> [2018-10-08 12:47:42.484397 -0400][Dump   ][XRootD            ] [cms-xrd-global.cern.ch:1094] Message kXR_open (file: /store/data/Run2018C/Tau/NANOAOD/14Sep2018_ver3-v1/60000/6FA4CC7C-8982-DE4C-BEED-C90413312B35.root, mode: 00, flags: kXR_open_read kXR_async kXR_retstat ) has been successfully sent.
> [2018-10-08 12:47:42.484423 -0400][Dump   ][PostMaster        ] [cms-xrd-global.cern.ch:1094 #0.0] All messages consumed, disable uplink
> [2018-10-08 12:47:42.598624 -0400][Dump   ][XRootDTransport   ] [msg: 0xbc000b70] Expecting 21 bytes of message body
> [2018-10-08 12:47:42.598660 -0400][Dump   ][AsyncSock         ] [cms-xrd-global.cern.ch:1094 #0.0] Received message header for 0xbc000b70 size: 8
> [2018-10-08 12:47:42.598680 -0400][Dump   ][AsyncSock         ] [cms-xrd-global.cern.ch:1094 #0.0] Received message 0xbc000b70 of 29 bytes
> [2018-10-08 12:47:42.598691 -0400][Dump   ][PostMaster        ] [cms-xrd-global.cern.ch:1094 #0] Handling received message: 0xbc000b70.
> [2018-10-08 12:47:42.598772 -0400][Dump   ][XRootD            ] [cms-xrd-global.cern.ch:1094] Got kXR_redirect response to message kXR_open (file: /store/data/Run2018C/Tau/NANOAOD/14Sep2018_ver3-v1/60000/6FA4CC7C-8982-DE4C-BEED-C90413312B35.root, mode: 00, flags: kXR_open_read kXR_async kXR_retstat ): xrootd.ba.infn.it, port 1094
> [2018-10-08 12:47:42.598834 -0400][Dump   ][XRootD            ] [cms-xrd-global.cern.ch:1094] Current server has been assigned as a load-balancer for message kXR_open (file: /store/data/Run2018C/Tau/NANOAOD/14Sep2018_ver3-v1/60000/6FA4CC7C-8982-DE4C-BEED-C90413312B35.root, mode: 00, flags: kXR_open_read kXR_async kXR_retstat )
> [2018-10-08 12:47:42.598880 -0400][Dump   ][Utility           ] URL: xrootd.ba.infn.it:1094/
> [2018-10-08 12:47:42.598880 -0400][Dump   ][Utility           ] Protocol:  root
> [2018-10-08 12:47:42.598880 -0400][Dump   ][Utility           ] User Name:
> [2018-10-08 12:47:42.598880 -0400][Dump   ][Utility           ] Password:
> [2018-10-08 12:47:42.598880 -0400][Dump   ][Utility           ] Host Name: xrootd.ba.infn.it
> [2018-10-08 12:47:42.598880 -0400][Dump   ][Utility           ] Port:      1094
> [2018-10-08 12:47:42.598880 -0400][Dump   ][Utility           ] Path:
> [2018-10-08 12:47:42.598930 -0400][Dump   ][Utility           ] URL: xrootd.ba.infn.it:1094
> [2018-10-08 12:47:42.598930 -0400][Dump   ][Utility           ] Protocol:  root
> [2018-10-08 12:47:42.598930 -0400][Dump   ][Utility           ] User Name:
> [2018-10-08 12:47:42.598930 -0400][Dump   ][Utility           ] Password:
> [2018-10-08 12:47:42.598930 -0400][Dump   ][Utility           ] Host Name: xrootd.ba.infn.it
> [2018-10-08 12:47:42.598930 -0400][Dump   ][Utility           ] Port:      1094
> [2018-10-08 12:47:42.598930 -0400][Dump   ][Utility           ] Path:
> [2018-10-08 12:47:42.598971 -0400][Debug  ][PostMaster        ] Creating new channel to: xrootd.ba.infn.it:1094 1 stream(s)
> [2018-10-08 12:47:42.599001 -0400][Debug  ][PostMaster        ] [xrootd.ba.infn.it:1094 #0] Stream parameters: Network Stack: IPv4, Connection Window: 120, ConnectionRetry: 5, Stream Error Widnow: 1800
> [2018-10-08 12:47:42.605065 -0400][Debug  ][TaskMgr           ] Registering task: "TickGeneratorTask for: xrootd.ba.infn.it:1094" to be run at: [2018-10-08 12:47:57 -0400]
> [2018-10-08 12:47:42.605135 -0400][Dump   ][Utility           ] URL: fake://fake:111//store/data/Run2018C/Tau/NANOAOD/14Sep2018_ver3-v1/60000/6FA4CC7C-8982-DE4C-BEED-C90413312B35.root
> [2018-10-08 12:47:42.605135 -0400][Dump   ][Utility           ] Protocol:  fake
> [2018-10-08 12:47:42.605135 -0400][Dump   ][Utility           ] User Name:
> [2018-10-08 12:47:42.605135 -0400][Dump   ][Utility           ] Password:
> [2018-10-08 12:47:42.605135 -0400][Dump   ][Utility           ] Host Name: fake
> [2018-10-08 12:47:42.605135 -0400][Dump   ][Utility           ] Port:      111
> [2018-10-08 12:47:42.605135 -0400][Dump   ][Utility           ] Path:      /store/data/Run2018C/Tau/NANOAOD/14Sep2018_ver3-v1/60000/6FA4CC7C-8982-DE4C-BEED-C90413312B35.root
> [2018-10-08 12:47:42.605198 -0400][Dump   ][PostMaster        ] [xrootd.ba.infn.it:1094 #0] Sending message kXR_open (file: /store/data/Run2018C/Tau/NANOAOD/14Sep2018_ver3-v1/60000/6FA4CC7C-8982-DE4C-BEED-C90413312B35.root, mode: 00, flags: kXR_open_read kXR_async kXR_retstat ) (0xd2ac1c60) through substream 0 expecting answer at 0
> [2018-10-08 12:47:42.759078 -0400][Debug  ][PostMaster        ] [xrootd.ba.infn.it:1094] Found 1 address(es): [::ffff:90.147.66.75]:1094
> [2018-10-08 12:47:42.759128 -0400][Debug  ][AsyncSock         ] [xrootd.ba.infn.it:1094 #0.0] Attempting connection to [::ffff:90.147.66.75]:1094
> [2018-10-08 12:47:42.759178 -0400][Debug  ][Poller            ] Adding socket 0xb4001460 to the poller
> [2018-10-08 12:47:43.011019 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:47:43.011070 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:47:58 -0400]
> [2018-10-08 12:47:57.011967 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:47:57.012056 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:48:12 -0400]
> [2018-10-08 12:47:57.012068 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:47:57.012079 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:48:12 -0400]
> [2018-10-08 12:47:57.614605 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 15 seconds, TTL: 1200, allocated SIDs: 0, open files: 0
> [2018-10-08 12:47:57.614660 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 15 seconds, stream timeout: 60, allocated SIDs: 0, wait barrier: 2018-10-08 12:47:42 -0400
> [2018-10-08 12:47:58.012120 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:47:58.012156 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:48:13 -0400]
> [2018-10-08 12:48:12.013097 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:48:12.013183 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:48:27 -0400]
> [2018-10-08 12:48:12.013194 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:48:12.013205 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:48:27 -0400]
> [2018-10-08 12:48:12.629737 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 30 seconds, TTL: 1200, allocated SIDs: 0, open files: 0
> [2018-10-08 12:48:12.629789 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 30 seconds, stream timeout: 60, allocated SIDs: 0, wait barrier: 2018-10-08 12:47:42 -0400
> [2018-10-08 12:48:13.013295 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:48:13.013350 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:48:28 -0400]
> [2018-10-08 12:48:27.014384 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:48:27.014530 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:48:42 -0400]
> [2018-10-08 12:48:27.014543 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:48:27.014554 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:48:42 -0400]
> [2018-10-08 12:48:27.644483 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 45 seconds, TTL: 1200, allocated SIDs: 0, open files: 0
> [2018-10-08 12:48:27.644527 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 45 seconds, stream timeout: 60, allocated SIDs: 0, wait barrier: 2018-10-08 12:47:42 -0400
> [2018-10-08 12:48:28.014647 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:48:28.014746 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:48:43 -0400]
> [2018-10-08 12:48:42.015807 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:48:42.015883 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:48:57 -0400]
> [2018-10-08 12:48:42.015891 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:48:42.015899 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:48:57 -0400]
> [2018-10-08 12:48:42.659626 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 60 seconds, TTL: 1200, allocated SIDs: 0, open files: 0
> [2018-10-08 12:48:42.659708 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 60 seconds, stream timeout: 60, allocated SIDs: 0, wait barrier: 2018-10-08 12:47:42 -0400
> [2018-10-08 12:48:43.015986 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:48:43.016044 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:48:58 -0400]
> [2018-10-08 12:48:57.017119 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:48:57.017211 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:49:12 -0400]
> [2018-10-08 12:48:57.017224 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:48:57.017236 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:49:12 -0400]
> [2018-10-08 12:48:57.674693 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 75 seconds, TTL: 1200, allocated SIDs: 0, open files: 0
> [2018-10-08 12:48:57.674747 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 75 seconds, stream timeout: 60, allocated SIDs: 0, wait barrier: 2018-10-08 12:47:42 -0400
> [2018-10-08 12:48:58.017312 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:48:58.017363 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:49:13 -0400]
> [2018-10-08 12:49:12.018232 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:49:12.018331 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:49:27 -0400]
> [2018-10-08 12:49:12.018344 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:49:12.018356 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:49:27 -0400]
> [2018-10-08 12:49:12.689837 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 90 seconds, TTL: 1200, allocated SIDs: 0, open files: 0
> [2018-10-08 12:49:12.689902 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 90 seconds, stream timeout: 60, allocated SIDs: 0, wait barrier: 2018-10-08 12:47:42 -0400
> [2018-10-08 12:49:13.018495 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:49:13.018595 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:49:28 -0400]
> [2018-10-08 12:49:27.019848 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:49:27.019945 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:49:42 -0400]
> [2018-10-08 12:49:27.019958 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:49:27.019970 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:49:42 -0400]
> [2018-10-08 12:49:27.705001 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 105 seconds, TTL: 1200, allocated SIDs: 0, open files: 0
> [2018-10-08 12:49:27.705068 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 105 seconds, stream timeout: 60, allocated SIDs: 0, wait barrier: 2018-10-08 12:47:42 -0400
> [2018-10-08 12:49:28.020071 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:49:28.020125 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:49:43 -0400]
> [2018-10-08 12:49:42.021364 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:49:42.021480 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:49:57 -0400]
> [2018-10-08 12:49:42.021493 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:49:42.021503 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:49:57 -0400]
> [2018-10-08 12:49:42.720162 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 120 seconds, TTL: 1200, allocated SIDs: 0, open files: 0
> [2018-10-08 12:49:42.720212 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 120 seconds, stream timeout: 60, allocated SIDs: 0, wait barrier: 2018-10-08 12:47:42 -0400
> [2018-10-08 12:49:43.021625 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:49:43.021704 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:49:58 -0400]
> [2018-10-08 12:49:49.993490 -0400][Debug  ][AsyncSock         ] [xrootd.ba.infn.it:1094 #0.0] Async connection call returned
> [2018-10-08 12:49:49.993578 -0400][Error  ][AsyncSock         ] [xrootd.ba.infn.it:1094 #0.0] Unable to connect: Connection timed out
> [2018-10-08 12:49:49.993590 -0400][Debug  ][AsyncSock         ] [xrootd.ba.infn.it:1094 #0.0] Closing the socket
> [2018-10-08 12:49:49.993603 -0400][Debug  ][Poller            ] <x><--><x> Removing socket from the poller
> [2018-10-08 12:49:49.993661 -0400][Error  ][PostMaster        ] [xrootd.ba.infn.it:1094 #0] elapsed = 127, pConnectionWindow = 120 seconds.
> [2018-10-08 12:49:49.995541 -0400][Debug  ][PostMaster        ] [xrootd.ba.infn.it:1094] Found 1 address(es): [::ffff:90.147.66.75]:1094
> [2018-10-08 12:49:49.995605 -0400][Debug  ][AsyncSock         ] [xrootd.ba.infn.it:1094 #0.0] Attempting connection to [::ffff:90.147.66.75]:1094
> [2018-10-08 12:49:49.995671 -0400][Debug  ][Poller            ] Adding socket 0xb4001460 to the poller
> [2018-10-08 12:49:57.022913 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:49:57.023004 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:50:12 -0400]
> [2018-10-08 12:49:57.023017 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:49:57.023028 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:50:12 -0400]
> [2018-10-08 12:49:58.003744 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 136 seconds, TTL: 1200, allocated SIDs: 0, open files: 0
> [2018-10-08 12:49:58.003826 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 136 seconds, stream timeout: 60, allocated SIDs: 0, wait barrier: 2018-10-08 12:47:42 -0400
> [2018-10-08 12:49:58.023141 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:49:58.023227 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:50:13 -0400]
> [2018-10-08 12:50:12.024475 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:50:12.024569 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:50:27 -0400]
> [2018-10-08 12:50:12.024583 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:50:12.024594 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:50:27 -0400]
> [2018-10-08 12:50:13.018932 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 151 seconds, TTL: 1200, allocated SIDs: 0, open files: 0
> [2018-10-08 12:50:13.019020 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 151 seconds, stream timeout: 60, allocated SIDs: 0, wait barrier: 2018-10-08 12:47:42 -0400
> [2018-10-08 12:50:13.024696 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:50:13.024761 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:50:28 -0400]
> [2018-10-08 12:50:27.026052 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:50:27.026151 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:50:42 -0400]
> [2018-10-08 12:50:27.026163 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:50:27.026174 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:50:42 -0400]
> [2018-10-08 12:50:28.026284 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:50:28.026374 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:50:43 -0400]
> [2018-10-08 12:50:28.034057 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 166 seconds, TTL: 1200, allocated SIDs: 0, open files: 0
> [2018-10-08 12:50:28.034131 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 166 seconds, stream timeout: 60, allocated SIDs: 0, wait barrier: 2018-10-08 12:47:42 -0400
> [2018-10-08 12:50:42.027617 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:50:42.027708 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:50:57 -0400]
> [2018-10-08 12:50:42.027720 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:50:42.027730 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:50:57 -0400]
> [2018-10-08 12:50:43.027825 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:50:43.027873 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:50:58 -0400]
> [2018-10-08 12:50:43.049071 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 181 seconds, TTL: 1200, allocated SIDs: 0, open files: 0
> [2018-10-08 12:50:43.049143 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 181 seconds, stream timeout: 60, allocated SIDs: 0, wait barrier: 2018-10-08 12:47:42 -0400
> [2018-10-08 12:50:57.028918 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:50:57.029006 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:51:12 -0400]
> [2018-10-08 12:50:57.029018 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:50:57.029029 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:51:12 -0400]
> [2018-10-08 12:50:58.029146 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:50:58.029249 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:51:13 -0400]
> [2018-10-08 12:50:58.064174 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 196 seconds, TTL: 1200, allocated SIDs: 0, open files: 0
> [2018-10-08 12:50:58.064249 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 196 seconds, stream timeout: 60, allocated SIDs: 0, wait barrier: 2018-10-08 12:47:42 -0400
> [2018-10-08 12:51:12.030535 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:51:12.030628 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:51:27 -0400]
> [2018-10-08 12:51:12.030640 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:51:12.030652 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:51:27 -0400]
> [2018-10-08 12:51:13.030764 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:51:13.030859 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:51:28 -0400]
> [2018-10-08 12:51:13.079332 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 211 seconds, TTL: 1200, allocated SIDs: 0, open files: 0
> [2018-10-08 12:51:13.079586 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 211 seconds, stream timeout: 60, allocated SIDs: 0, wait barrier: 2018-10-08 12:47:42 -0400
> [2018-10-08 12:51:27.032149 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:51:27.032240 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:51:42 -0400]
> [2018-10-08 12:51:27.032252 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:51:27.032281 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:51:42 -0400]
> [2018-10-08 12:51:28.032391 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:51:28.032489 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:51:43 -0400]
> [2018-10-08 12:51:28.094590 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 226 seconds, TTL: 1200, allocated SIDs: 0, open files: 0
> [2018-10-08 12:51:28.094661 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 226 seconds, stream timeout: 60, allocated SIDs: 0, wait barrier: 2018-10-08 12:47:42 -0400
> [2018-10-08 12:51:42.033770 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:51:42.033856 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:51:57 -0400]
> [2018-10-08 12:51:42.033867 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:51:42.033877 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:51:57 -0400]
> [2018-10-08 12:51:43.033938 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:51:43.033959 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:51:58 -0400]
> [2018-10-08 12:51:43.109674 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 241 seconds, TTL: 1200, allocated SIDs: 0, open files: 0
> [2018-10-08 12:51:43.109755 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 241 seconds, stream timeout: 60, allocated SIDs: 0, wait barrier: 2018-10-08 12:47:42 -0400
> [2018-10-08 12:51:57.035289 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:51:57.035377 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:52:12 -0400]
> [2018-10-08 12:51:57.035389 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:51:57.035400 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:52:12 -0400]
> [2018-10-08 12:51:57.225543 -0400][Debug  ][AsyncSock         ] [xrootd.ba.infn.it:1094 #0.0] Async connection call returned
> [2018-10-08 12:51:57.225616 -0400][Error  ][AsyncSock         ] [xrootd.ba.infn.it:1094 #0.0] Unable to connect: Connection timed out
> [2018-10-08 12:51:57.225628 -0400][Debug  ][AsyncSock         ] [xrootd.ba.infn.it:1094 #0.0] Closing the socket
> [2018-10-08 12:51:57.225641 -0400][Debug  ][Poller            ] <x><--><x> Removing socket from the poller
> [2018-10-08 12:51:57.225678 -0400][Error  ][PostMaster        ] [xrootd.ba.infn.it:1094 #0] elapsed = 128, pConnectionWindow = 120 seconds.
> [2018-10-08 12:51:57.227519 -0400][Debug  ][PostMaster        ] [xrootd.ba.infn.it:1094] Found 1 address(es): [::ffff:90.147.66.75]:1094
> [2018-10-08 12:51:57.227582 -0400][Debug  ][AsyncSock         ] [xrootd.ba.infn.it:1094 #0.0] Attempting connection to [::ffff:90.147.66.75]:1094
> [2018-10-08 12:51:57.227649 -0400][Debug  ][Poller            ] Adding socket 0xb4001460 to the poller
> [2018-10-08 12:51:58.035522 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:51:58.035569 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:52:13 -0400]
> [2018-10-08 12:51:58.228749 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 256 seconds, TTL: 1200, allocated SIDs: 0, open files: 0
> [2018-10-08 12:51:58.228800 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 256 seconds, stream timeout: 60, allocated SIDs: 0, wait barrier: 2018-10-08 12:47:42 -0400
> [2018-10-08 12:52:12.036940 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:52:12.037031 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:52:27 -0400]
> [2018-10-08 12:52:12.037044 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:52:12.037055 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:52:27 -0400]
> [2018-10-08 12:52:13.037157 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:52:13.037209 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:52:28 -0400]
> [2018-10-08 12:52:13.243916 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 271 seconds, TTL: 1200, allocated SIDs: 0, open files: 0
> [2018-10-08 12:52:13.243996 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 271 seconds, stream timeout: 60, allocated SIDs: 0, wait barrier: 2018-10-08 12:47:42 -0400
> [2018-10-08 12:52:27.038534 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:52:27.038633 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:52:42 -0400]
> [2018-10-08 12:52:27.038646 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:52:27.038657 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:52:42 -0400]
> [2018-10-08 12:52:28.038767 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:52:28.038819 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:52:43 -0400]
> [2018-10-08 12:52:28.259064 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 286 seconds, TTL: 1200, allocated SIDs: 0, open files: 0
> [2018-10-08 12:52:28.259133 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 286 seconds, stream timeout: 60, allocated SIDs: 0, wait barrier: 2018-10-08 12:47:42 -0400
> [2018-10-08 12:52:42.040216 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:52:42.040319 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:52:57 -0400]
> [2018-10-08 12:52:42.040331 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:52:42.040341 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:52:57 -0400]
> [2018-10-08 12:52:43.040456 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:52:43.040509 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:52:58 -0400]
> [2018-10-08 12:52:43.274216 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 301 seconds, TTL: 1200, allocated SIDs: 0, open files: 0
> [2018-10-08 12:52:43.274269 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 301 seconds, stream timeout: 60, allocated SIDs: 0, wait barrier: 2018-10-08 12:47:42 -0400
> [2018-10-08 12:52:57.041904 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:52:57.041996 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:53:12 -0400]
> [2018-10-08 12:52:57.042009 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:52:57.042020 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:53:12 -0400]
> [2018-10-08 12:52:58.042151 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:52:58.042206 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:53:13 -0400]
> [2018-10-08 12:52:58.289335 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 316 seconds, TTL: 1200, allocated SIDs: 0, open files: 0
> [2018-10-08 12:52:58.289399 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 316 seconds, stream timeout: 60, allocated SIDs: 0, wait barrier: 2018-10-08 12:47:42 -0400
> [2018-10-08 12:53:12.043608 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:53:12.043695 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:53:27 -0400]
> [2018-10-08 12:53:12.043708 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:53:12.043719 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:53:27 -0400]
> [2018-10-08 12:53:13.043841 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:53:13.043939 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:53:28 -0400]
> [2018-10-08 12:53:13.304509 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 331 seconds, TTL: 1200, allocated SIDs: 0, open files: 0
> [2018-10-08 12:53:13.304576 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 331 seconds, stream timeout: 60, allocated SIDs: 0, wait barrier: 2018-10-08 12:47:42 -0400
> [2018-10-08 12:53:27.045326 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:53:27.045456 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:53:42 -0400]
> [2018-10-08 12:53:27.045474 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:53:27.045486 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:53:42 -0400]
> [2018-10-08 12:53:28.045599 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:53:28.045667 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:53:43 -0400]
> [2018-10-08 12:53:28.319684 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 346 seconds, TTL: 1200, allocated SIDs: 0, open files: 0
> [2018-10-08 12:53:28.319752 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 346 seconds, stream timeout: 60, allocated SIDs: 0, wait barrier: 2018-10-08 12:47:42 -0400
> [2018-10-08 12:53:42.046802 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:53:42.046895 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:53:57 -0400]
> [2018-10-08 12:53:42.046908 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:53:42.046919 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:53:57 -0400]
> [2018-10-08 12:53:43.047037 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:53:43.047128 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:53:58 -0400]
> [2018-10-08 12:53:43.334856 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 361 seconds, TTL: 1200, allocated SIDs: 0, open files: 0
> [2018-10-08 12:53:43.334926 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 361 seconds, stream timeout: 60, allocated SIDs: 0, wait barrier: 2018-10-08 12:47:42 -0400
> [2018-10-08 12:53:57.048162 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:53:57.048266 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:54:12 -0400]
> [2018-10-08 12:53:57.048279 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:53:57.048290 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:54:12 -0400]
> [2018-10-08 12:53:58.048445 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:53:58.048541 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:54:13 -0400]
> [2018-10-08 12:53:58.350003 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 376 seconds, TTL: 1200, allocated SIDs: 0, open files: 0
> [2018-10-08 12:53:58.350083 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 376 seconds, stream timeout: 60, allocated SIDs: 0, wait barrier: 2018-10-08 12:47:42 -0400
> [2018-10-08 12:54:04.457504 -0400][Debug  ][AsyncSock         ] [xrootd.ba.infn.it:1094 #0.0] Async connection call returned
> [2018-10-08 12:54:04.457590 -0400][Error  ][AsyncSock         ] [xrootd.ba.infn.it:1094 #0.0] Unable to connect: Connection timed out
> [2018-10-08 12:54:04.457602 -0400][Debug  ][AsyncSock         ] [xrootd.ba.infn.it:1094 #0.0] Closing the socket
> [2018-10-08 12:54:04.457615 -0400][Debug  ][Poller            ] <x><--><x> Removing socket from the poller
> [2018-10-08 12:54:04.457654 -0400][Error  ][PostMaster        ] [xrootd.ba.infn.it:1094 #0] elapsed = 127, pConnectionWindow = 120 seconds.
> [2018-10-08 12:54:04.886260 -0400][Debug  ][PostMaster        ] [xrootd.ba.infn.it:1094] Found 1 address(es): [::ffff:90.147.66.75]:1094
> [2018-10-08 12:54:04.886288 -0400][Debug  ][AsyncSock         ] [xrootd.ba.infn.it:1094 #0.0] Attempting connection to [::ffff:90.147.66.75]:1094
> [2018-10-08 12:54:04.886322 -0400][Debug  ][Poller            ] Adding socket 0xb4001460 to the poller
> [2018-10-08 12:54:12.049841 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:54:12.049930 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:54:27 -0400]
> [2018-10-08 12:54:12.049943 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:54:12.049954 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:54:27 -0400]
> [2018-10-08 12:54:13.050059 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:54:13.050114 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:54:28 -0400]
> [2018-10-08 12:54:13.895380 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 391 seconds, TTL: 1200, allocated SIDs: 0, open files: 0
> [2018-10-08 12:54:13.895440 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 391 seconds, stream timeout: 60, allocated SIDs: 0, wait barrier: 2018-10-08 12:47:42 -0400
> [2018-10-08 12:54:27.051468 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:54:27.051554 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:54:42 -0400]
> [2018-10-08 12:54:27.051566 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:54:27.051576 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:54:42 -0400]
> [2018-10-08 12:54:28.051721 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:54:28.051814 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:54:43 -0400]
> [2018-10-08 12:54:28.910556 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 406 seconds, TTL: 1200, allocated SIDs: 0, open files: 0
> [2018-10-08 12:54:28.910625 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 406 seconds, stream timeout: 60, allocated SIDs: 0, wait barrier: 2018-10-08 12:47:42 -0400
> [2018-10-08 12:54:42.053136 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:54:42.053234 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:54:57 -0400]
> [2018-10-08 12:54:42.053247 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:54:42.053258 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:54:57 -0400]
> [2018-10-08 12:54:43.053357 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:54:43.053470 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:54:58 -0400]
> [2018-10-08 12:54:43.925750 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 421 seconds, TTL: 1200, allocated SIDs: 0, open files: 0
> [2018-10-08 12:54:43.925817 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 421 seconds, stream timeout: 60, allocated SIDs: 0, wait barrier: 2018-10-08 12:47:42 -0400
> [2018-10-08 12:54:57.054644 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:54:57.054736 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:55:12 -0400]
> [2018-10-08 12:54:57.054749 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:54:57.054760 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:55:12 -0400]
> [2018-10-08 12:54:58.054843 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:54:58.054909 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:55:13 -0400]
> [2018-10-08 12:54:58.940958 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 436 seconds, TTL: 1200, allocated SIDs: 0, open files: 0
> [2018-10-08 12:54:58.941032 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 436 seconds, stream timeout: 60, allocated SIDs: 0, wait barrier: 2018-10-08 12:47:42 -0400
> [2018-10-08 12:55:12.055939 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:55:12.056033 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:55:27 -0400]
> [2018-10-08 12:55:12.056046 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:55:12.056057 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:55:27 -0400]
> [2018-10-08 12:55:13.056131 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:55:13.056192 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:55:28 -0400]
> [2018-10-08 12:55:13.956170 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 451 seconds, TTL: 1200, allocated SIDs: 0, open files: 0
> [2018-10-08 12:55:13.956276 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 451 seconds, stream timeout: 60, allocated SIDs: 0, wait barrier: 2018-10-08 12:47:42 -0400
> [2018-10-08 12:55:27.057112 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:55:27.057201 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:55:42 -0400]
> [2018-10-08 12:55:27.057213 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:55:27.057223 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:55:42 -0400]
> [2018-10-08 12:55:28.057331 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:55:28.057438 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:55:43 -0400]
> [2018-10-08 12:55:28.971462 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 466 seconds, TTL: 1200, allocated SIDs: 0, open files: 0
> [2018-10-08 12:55:28.971546 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 466 seconds, stream timeout: 60, allocated SIDs: 0, wait barrier: 2018-10-08 12:47:42 -0400
> [2018-10-08 12:55:42.058766 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:55:42.058865 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:55:57 -0400]
> [2018-10-08 12:55:42.058877 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:55:42.058889 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:55:57 -0400]
> [2018-10-08 12:55:43.059003 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:55:43.059075 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:55:58 -0400]
> [2018-10-08 12:55:43.986672 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 481 seconds, TTL: 1200, allocated SIDs: 0, open files: 0
> [2018-10-08 12:55:43.986742 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 481 seconds, stream timeout: 60, allocated SIDs: 0, wait barrier: 2018-10-08 12:47:42 -0400
> [2018-10-08 12:55:57.060459 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:55:57.060550 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:56:12 -0400]
> [2018-10-08 12:55:57.060560 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:55:57.060568 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:56:12 -0400]
> [2018-10-08 12:55:58.060675 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:55:58.060727 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:56:13 -0400]
> [2018-10-08 12:55:59.001891 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 497 seconds, TTL: 1200, allocated SIDs: 0, open files: 0
> [2018-10-08 12:55:59.001949 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 497 seconds, stream timeout: 60, allocated SIDs: 0, wait barrier: 2018-10-08 12:47:42 -0400
> [2018-10-08 12:56:12.062131 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:56:12.062222 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:56:27 -0400]
> [2018-10-08 12:56:12.062264 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:56:12.062276 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:56:27 -0400]
> [2018-10-08 12:56:12.201502 -0400][Debug  ][AsyncSock         ] [xrootd.ba.infn.it:1094 #0.0] Async connection call returned
> [2018-10-08 12:56:12.201570 -0400][Error  ][AsyncSock         ] [xrootd.ba.infn.it:1094 #0.0] Unable to connect: Connection timed out
> [2018-10-08 12:56:12.201590 -0400][Debug  ][AsyncSock         ] [xrootd.ba.infn.it:1094 #0.0] Closing the socket
> [2018-10-08 12:56:12.201603 -0400][Debug  ][Poller            ] <x><--><x> Removing socket from the poller
> [2018-10-08 12:56:12.201638 -0400][Error  ][PostMaster        ] [xrootd.ba.infn.it:1094 #0] elapsed = 128, pConnectionWindow = 120 seconds.
> [2018-10-08 12:56:12.203812 -0400][Debug  ][PostMaster        ] [xrootd.ba.infn.it:1094] Found 1 address(es): [::ffff:90.147.66.75]:1094
> [2018-10-08 12:56:12.203864 -0400][Debug  ][AsyncSock         ] [xrootd.ba.infn.it:1094 #0.0] Attempting connection to [::ffff:90.147.66.75]:1094
> [2018-10-08 12:56:12.203920 -0400][Debug  ][Poller            ] Adding socket 0xb4001460 to the poller
> [2018-10-08 12:56:13.062384 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:56:13.062473 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:56:28 -0400]
> [2018-10-08 12:56:14.206013 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 512 seconds, TTL: 1200, allocated SIDs: 0, open files: 0
> [2018-10-08 12:56:14.206101 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 512 seconds, stream timeout: 60, allocated SIDs: 0, wait barrier: 2018-10-08 12:47:42 -0400
> [2018-10-08 12:56:27.063799 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:56:27.063890 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:56:42 -0400]
> [2018-10-08 12:56:27.063902 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:56:27.063914 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:56:42 -0400]
> [2018-10-08 12:56:28.064010 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:56:28.064061 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:56:43 -0400]
> [2018-10-08 12:56:29.221075 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 527 seconds, TTL: 1200, allocated SIDs: 0, open files: 0
> [2018-10-08 12:56:29.221143 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 527 seconds, stream timeout: 60, allocated SIDs: 0, wait barrier: 2018-10-08 12:47:42 -0400
> [2018-10-08 12:56:42.065292 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:56:42.065383 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:56:57 -0400]
> [2018-10-08 12:56:42.065395 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:56:42.065427 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:56:57 -0400]
> [2018-10-08 12:56:43.065553 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:56:43.065653 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:56:58 -0400]
> [2018-10-08 12:56:44.236161 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 542 seconds, TTL: 1200, allocated SIDs: 0, open files: 0
> [2018-10-08 12:56:44.236230 -0400][Dump   ][XRootDTransport   ] [cms-xrd-global.cern.ch:1094 #0.0] Stream inactive since 542 seconds, stream timeout: 60, allocated SIDs: 0, wait barrier: 2018-10-08 12:47:42 -0400
> [2018-10-08 12:56:57.066918 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: cms-xrd-global.cern.ch:1094"
> [2018-10-08 12:56:57.067033 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: cms-xrd-global.cern.ch:1094" at [2018-10-08 12:57:12 -0400]
> [2018-10-08 12:56:57.067046 -0400][Dump   ][TaskMgr           ] Running task: "TickGeneratorTask for: xrootd.ba.infn.it:1094"
> [2018-10-08 12:56:57.067058 -0400][Dump   ][TaskMgr           ] Will rerun task "TickGeneratorTask for: xrootd.ba.infn.it:1094" at [2018-10-08 12:57:12 -0400]
> [2018-10-08 12:56:58.067164 -0400][Dump   ][TaskMgr           ] Running task: "FileTimer task"
> [2018-10-08 12:56:58.067251 -0400][Dump   ][TaskMgr           ] Will rerun task "FileTimer task" at [2018-10-08 12:57:13 -0400]
> [2018-10-08 

-- 
You are receiving this because you commented.
Reply to this email directly or view it on GitHub:
https://github.com/xrootd/xrootd/issues/836#issuecomment-427934363

########################################################################
Use REPLY-ALL to reply to list

To unsubscribe from the XROOTD-DEV list, click the following link:
https://listserv.slac.stanford.edu/cgi-bin/wa?SUBED1=XROOTD-DEV&A=1