alena-m
(Alena M)
March 8, 2021, 9:03am
1
What is the problem you are having with rclone?
I used previously rclone 1.51 to sync SFTP and S3, it worked fine. Since I updated rclone to 1.54 it works super slow.
1.51 takes a few second to sync one folder
1.54 takes 2-3 minutes to sync the same folder.
Is any magic flag for 1.54 to run faster?
What is your rclone version (output from rclone version
)
rclone v1.54.0
os/arch: linux/amd64
go version: go1.15.7
Which OS you are using and how many bits (eg Windows 7, 64 bit)
Debian GNU/Linux 10 (buster)
Which cloud storage system are you using? (eg Google Drive)
SFTP, S3
The command you were trying to run (eg rclone copy /tmp remote:tmp
)
rclone sync --dry-run mrn-ftp://path/2021/2021-02 s3:my_bucket/year=2021/month=02/source=3PTY -vv
The rclone config contents with secrets removed.
[s3]
type = s3
provider = AWS
env_auth = true
region = eu-west-1
location_constraint = eu-west-1
acl = bucket-owner-full-control
[mrn-ftp]
type = sftp
host = xxx.com
user = xxx
pass = xxx
key_file = ~/.config/rclone/mrn-ftp.pem
key_file_pass = xxx
use_insecure_cipher = false
md5sum_command = none
sha1sum_command = none
A log from the command with the -vv
flag
2021/03/08 08:42:27 DEBUG : rclone: Version "v1.54.0" starting with parameters ["rclone" "sync" "--dry-run" "mrn-ftp://path/2021/2021-02" "s3:my_bucket/year=2021/month=02/source=3PTY" "-vv"]
2021/03/08 08:42:27 DEBUG : Using config file from "/.config/rclone/rclone.conf"
2021/03/08 08:42:27 DEBUG : Creating backend with remote "mrn-ftp://path/2021/2021-02"
2021/03/08 08:42:28 DEBUG : sftp://xxx.com:22///path/2021/2021-02: New connection xx.xx.xx.xx:57650->xx.xx.xx.xx:22 to "SSH-2.0-AWS_SFTP_1.0"
2021/03/08 08:42:30 DEBUG : Creating backend with remote "s3:my_bucket/year=2021/month=02/source=3PTY"
2021/03/08 08:44:34 DEBUG : S3 bucket my_bucket path path/year=2021/month=02/source=3PTY: Waiting for checks to finish
2021/03/08 08:44:34 DEBUG : News.txt.gz: Size and modification time the same (differ by 0s, within tolerance 1s)
2021/03/08 08:44:34 DEBUG : News.txt.gz: Unchanged skipping
....
....
,,,
2021/03/08 08:44:34 DEBUG : S3 bucket my_bucket path path/year=2021/month=02/source=3PTY: Waiting for transfers to finish
2021/03/08 08:44:34 DEBUG : Waiting for deletions to finish
2021/03/08 08:44:34 INFO : There was nothing to transfer
2021/03/08 08:44:34 NOTICE:
Transferred: 0 / 0 Bytes, -, 0 Bytes/s, ETA -
Checks: 28 / 28, 100%
Elapsed time: 2m6.8s
2021/03/08 08:44:34 DEBUG : 29 go routines active
ncw
(Nick Craig-Wood)
March 8, 2021, 12:43pm
2
I'd guess it is directory listings by the look of your logs.
Try timing
rclone -v size s3:s3:my_bucket/year=2021/month=02/source=3PTY
vs
rclone -v size mrn-ftp://path/2021/2021-02
Does one of those take 30s?
I'm guessing it will be the SFTP site.
alena-m
(Alena M)
March 9, 2021, 2:32am
3
Hi @ncw
Thanks for the reply.
I tried timing for both 1.51 (run on ec2) and 1.54 (run in docker on the same ec2).
1.51 version
1 sec: rclone -v size s3:my_bucket/year=2021/month=02/source=3PTY
2 sec: rclone -v size mrn-ftp://path/2021/2021-02
1.54 version
2 min 4 sec: rclone -v size s3:my_bucket/year=2021/month=02/source=3PTY
3 sec: rclone -v size mrn-ftp://path/2021/2021-02
It seems something changed for S3 in stage "Creating backend with remote", now it takes 2 minutes((
Here is the detailed log for S3:
rclone -vv size s3:my_bucket/year=2021/month=02/source=3PTY
2021/03/09 01:14:52 DEBUG : rclone: Version "v1.54.0" starting with parameters ["rclone" "-vv" "size" "s3:my_bucket/year=2021/month=02/source=3PTY"]
2021/03/09 01:14:52 DEBUG : Using config file from "/.config/rclone/rclone.conf"
2021/03/09 01:14:52 DEBUG : Creating backend with remote "s3:my_bucket/year=2021/month=02/source=3PTY"
Total objects: 28
Total size: 611.953 MBytes (641679438 Bytes)
2021/03/09 01:16:56 DEBUG : 4 go routines active
What does "Creating backend with remote" mean? What is happening behind?
ncw
(Nick Craig-Wood)
March 9, 2021, 9:56am
4
OK that is interesting!
Can you try running this which will show the HTTP requests - there should only be one. Can you try this with 1.54 and 1.51 and post the output?
rclone -vv --dump headers size s3:my_bucket/year=2021/month=02/source=3PTY
Hmm, this must be something to do with the env auth I think...
How does your s3 auth work?
alena-m
(Alena M)
March 9, 2021, 11:13am
5
As it runs on EC2 we use IAM role for auth.
Here is the output for headers:
v 1.51
rclone -vv --dump headers size s3:my_bucket/year=2021/month=02/source=3PTY
2021/03/09 10:44:50 DEBUG : rclone: Version "v1.51.0" starting with parameters ["rclone" "-vv" "--dump" "headers" "size" "s3:my_bucket/year=2021/month=02/source=3PTY"]
2021/03/09 10:44:50 DEBUG : Using config file from "/.config/rclone/rclone.conf"
2021/03/09 10:44:50 DEBUG : You have specified to dump information. Please be noted that the Accept-Encoding as shown may not be correct in the request and the response may not show Content-Encoding if the go standard libraries auto gzip encoding was in effect. In this case the body of the request will be gunzipped before showing it.
2021/03/09 10:44:50 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2021/03/09 10:44:50 DEBUG : HTTP REQUEST (req 0xc000129900)
2021/03/09 10:44:50 DEBUG : GET /latest/meta-data/iam/security-credentials/ HTTP/1.1
Host: xxx.xxx.xxx.xxx
User-Agent: rclone/v1.51.0
Accept-Encoding: gzip
2021/03/09 10:44:50 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2021/03/09 10:44:50 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2021/03/09 10:44:50 DEBUG : HTTP RESPONSE (req 0xc000129900)
2021/03/09 10:44:50 DEBUG : HTTP/1.1 200 OK
Connection: close
Content-Length: 22
Accept-Ranges: none
Content-Type: text/plain
Date: Tue, 09 Mar 2021 10:44:50 GMT
Last-Modified: Tue, 09 Mar 2021 10:38:17 GMT
Server: EC2ws
2021/03/09 10:44:50 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2021/03/09 10:44:50 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2021/03/09 10:44:50 DEBUG : HTTP REQUEST (req 0xc00029a100)
2021/03/09 10:44:50 DEBUG : GET /latest/meta-data/iam/security-credentials/my_role HTTP/1.1
Host: xxx.xxx.xxx.xxx
User-Agent: rclone/v1.51.0
Accept-Encoding: gzip
2021/03/09 10:44:50 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2021/03/09 10:44:50 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2021/03/09 10:44:50 DEBUG : HTTP RESPONSE (req 0xc00029a100)
2021/03/09 10:44:50 DEBUG : HTTP/1.1 200 OK
Connection: close
Content-Length: 1298
Accept-Ranges: none
Content-Type: text/plain
Date: Tue, 09 Mar 2021 10:44:50 GMT
Last-Modified: Tue, 09 Mar 2021 10:38:17 GMT
Server: EC2ws
2021/03/09 10:44:50 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2021/03/09 10:44:50 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2021/03/09 10:44:50 DEBUG : HTTP REQUEST (req 0xc00029a300)
2021/03/09 10:44:50 DEBUG : HEAD /year%3D2021/month%3D02/source%3D3PTY HTTP/1.1
Host: xxx.s3.eu-west-1.amazonaws.com
User-Agent: rclone/v1.51.0
Authorization: XXXX
X-Amz-Content-Sha256: e3b0c44298xxxxx
X-Amz-Date: 20210309T104450Z
X-Amz-Security-Token: xxx
2021/03/09 10:44:50 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2021/03/09 10:44:50 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2021/03/09 10:44:50 DEBUG : HTTP RESPONSE (req 0xc00029a300)
2021/03/09 10:44:50 DEBUG : HTTP/1.1 404 Not Found
Connection: close
Content-Type: application/xml
Date: Tue, 09 Mar 2021 10:44:50 GMT
Server: AmazonS3
X-Amz-Id-2: gkwJ5B7xxxxx
X-Amz-Request-Id: DD0xxx
2021/03/09 10:44:50 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2021/03/09 10:44:50 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2021/03/09 10:44:50 DEBUG : HTTP REQUEST (req 0xc0005bf300)
2021/03/09 10:44:50 DEBUG : GET /?delimiter=&encoding-type=url&max-keys=1000&prefix=year%3D2021%2Fmonth%3D02%2Fsource%3D3PTY%2F HTTP/1.1
Host: xxx.s3.eu-west-1.amazonaws.com
User-Agent: rclone/v1.51.0
Authorization: XXXX
X-Amz-Content-Sha256: e3b0c44298xxx
X-Amz-Date: 20210309T104450Z
X-Amz-Security-Token: xxx
Accept-Encoding: gzip
2021/03/09 10:44:50 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2021/03/09 10:44:51 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2021/03/09 10:44:51 DEBUG : HTTP RESPONSE (req 0xc0005bf300)
2021/03/09 10:44:51 DEBUG : HTTP/1.1 200 OK
Transfer-Encoding: chunked
Content-Type: application/xml
Date: Tue, 09 Mar 2021 10:44:51 GMT
Server: AmazonS3
X-Amz-Bucket-Region: eu-west-1
X-Amz-Id-2: 8rVgQxpxxx
X-Amz-Request-Id: D5850xxx
2021/03/09 10:44:51 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
Total objects: 28
Total size: 611.953 MBytes (641679438 Bytes)
2021/03/09 10:44:51 DEBUG : 5 go routines active
2021/03/09 10:44:51 DEBUG : rclone: Version "v1.51.0" finishing with parameters ["rclone" "-vv" "--dump" "headers" "size" "s3:my_bucket/year=2021/month=02/source=3PTY"]
v 1.54
I see the error connection reset by peer
after 2 minutes waiting in line 2021/03/09 10:48:34
2021/03/09 10:46:31 DEBUG : rclone: Version "v1.54.0" starting with parameters ["rclone" "-vv" "--dump" "headers" "size" "s3:my_bucket/year=2021/month=02/source=3PTY"]
2021/03/09 10:46:31 DEBUG : Using config file from "/.config/rclone/rclone.conf"
2021/03/09 10:46:31 DEBUG : Creating backend with remote "s3:my_bucket/year=2021/month=02/source=3PTY"
2021/03/09 10:46:31 DEBUG : You have specified to dump information. Please be noted that the Accept-Encoding as shown may not be correct in the request and the response may not show Content-Encoding if the go standard libraries auto gzip encoding was in effect. In this case the body of the request will be gunzipped before showing it.
2021/03/09 10:46:31 DEBUG : You have specified to dump information. Please be noted that the Accept-Encoding as shown may not be correct in the request and the response may not show Content-Encoding if the go standard libraries auto gzip encoding was in effect. In this case the body of the request will be gunzipped before showing it.
2021/03/09 10:46:31 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2021/03/09 10:46:31 DEBUG : HTTP REQUEST (req 0xc000191800)
2021/03/09 10:46:31 DEBUG : PUT /latest/api/token HTTP/1.1
Host: xxx.xxx.xxx.xxx
User-Agent: rclone/v1.54.0
Content-Length: 0
X-Aws-Ec2-Metadata-Token-Ttl-Seconds: 21600
Accept-Encoding: gzip
2021/03/09 10:46:31 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2021/03/09 10:48:34 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2021/03/09 10:48:34 DEBUG : HTTP RESPONSE (req 0xc000191800)
2021/03/09 10:48:34 DEBUG : Error: read tcp xxx.xxx.xxx.xxx:34808->xxx.xxx.xxx.xxx:80: read: connection reset by peer
2021/03/09 10:48:34 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2021/03/09 10:48:34 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2021/03/09 10:48:34 DEBUG : HTTP REQUEST (req 0xc000190400)
2021/03/09 10:48:34 DEBUG : GET /latest/meta-data/iam/security-credentials/ HTTP/1.1
Host: xxx.xxx.xxx.xxx
User-Agent: rclone/v1.54.0
Accept-Encoding: gzip
2021/03/09 10:48:34 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2021/03/09 10:48:34 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2021/03/09 10:48:34 DEBUG : HTTP RESPONSE (req 0xc000190400)
2021/03/09 10:48:34 DEBUG : HTTP/1.1 200 OK
Connection: close
Content-Length: 22
Accept-Ranges: none
Content-Type: text/plain
Date: Tue, 09 Mar 2021 10:48:34 GMT
Last-Modified: Tue, 09 Mar 2021 10:38:17 GMT
Server: EC2ws
2021/03/09 10:48:34 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2021/03/09 10:48:34 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2021/03/09 10:48:34 DEBUG : HTTP REQUEST (req 0xc0001ea400)
2021/03/09 10:48:34 DEBUG : GET /latest/meta-data/iam/security-credentials/my_role HTTP/1.1
Host: xxx.xxx.xxx.xxx
User-Agent: rclone/v1.54.0
Accept-Encoding: gzip
2021/03/09 10:48:34 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2021/03/09 10:48:34 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2021/03/09 10:48:34 DEBUG : HTTP RESPONSE (req 0xc0001ea400)
2021/03/09 10:48:34 DEBUG : HTTP/1.1 200 OK
Connection: close
Content-Length: 1298
Accept-Ranges: none
Content-Type: text/plain
Date: Tue, 09 Mar 2021 10:48:34 GMT
Last-Modified: Tue, 09 Mar 2021 10:38:17 GMT
Server: EC2ws
2021/03/09 10:48:34 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2021/03/09 10:48:34 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2021/03/09 10:48:34 DEBUG : HTTP REQUEST (req 0xc000458200)
2021/03/09 10:48:34 DEBUG : HEAD /year%3D2021/month%3D02/source%3D3PTY HTTP/1.1
Host: xxx.s3.eu-west-1.amazonaws.com
User-Agent: rclone/v1.54.0
Authorization: XXXX
X-Amz-Content-Sha256: e3b0cxxx
X-Amz-Date: 20210309T104631Z
X-Amz-Security-Token: xxx
2021/03/09 10:48:34 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2021/03/09 10:48:34 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2021/03/09 10:48:34 DEBUG : HTTP RESPONSE (req 0xc000458200)
2021/03/09 10:48:34 DEBUG : HTTP/1.1 404 Not Found
Connection: close
Content-Type: application/xml
Date: Tue, 09 Mar 2021 10:48:34 GMT
Server: AmazonS3
X-Amz-Id-2: 6eTXZKxxx
X-Amz-Request-Id: 7VExxx
2021/03/09 10:48:34 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2021/03/09 10:48:34 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2021/03/09 10:48:34 DEBUG : HTTP REQUEST (req 0xc0001ea400)
2021/03/09 10:48:34 DEBUG : GET /?delimiter=&encoding-type=url&max-keys=1000&prefix=year%3D2021%2Fmonth%3D02%2Fsource%3D3PTY%2F HTTP/1.1
Host: xxx.s3.eu-west-1.amazonaws.com
User-Agent: rclone/v1.54.0
Authorization: XXXX
X-Amz-Content-Sha256: e3b0cxxx
X-Amz-Date: 20210309T104834Z
X-Amz-Security-Token: xxx
Accept-Encoding: gzip
2021/03/09 10:48:34 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2021/03/09 10:48:34 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2021/03/09 10:48:34 DEBUG : HTTP RESPONSE (req 0xc0001ea400)
2021/03/09 10:48:34 DEBUG : HTTP/1.1 200 OK
Transfer-Encoding: chunked
Content-Type: application/xml
Date: Tue, 09 Mar 2021 10:48:35 GMT
Server: AmazonS3
X-Amz-Bucket-Region: eu-west-1
X-Amz-Id-2: G5wFxxx
X-Amz-Request-Id: 134xxx
2021/03/09 10:48:34 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
Total objects: 28
Total size: 611.953 MBytes (641679438 Bytes)
2021/03/09 10:48:34 DEBUG : 4 go routines active
ncw
(Nick Craig-Wood)
March 9, 2021, 2:36pm
6
Great debug log thanks
I don't really understand the way the iam stuff works since the SDK manages it completely.
However there does appear to be an issue on the SDK about this
opened 02:36PM - 25 Nov 19 UTC
Please fill out the sections below to help us address your issue.
Version of AWS SDK for Go?
v1.25.41
Version of Go (go version)?
go...
There seems to be 2 workarounds
increase the hop limit to 2
use a later version of the SDK
If you want to try using a later SDK then please try the latest beta
(there is a docker of this too under the beta
tag).
1 Like
alena-m
(Alena M)
March 10, 2021, 2:45am
7
Hi @ncw
I tried v1.55.0-beta.5248.6df56c55b
and it works! My sync
command again runs for a few seconds instead of 2 minutes.
Thank you for your help!
rclone sync --dry-run mrn-ftp://path/2021/2021-02 s3:my_bucket/year=2021/month=02/source=3PTY -vv
2021/03/10 01:51:50 DEBUG : rclone: Version "v1.55.0-beta.5248.6df56c55b" starting with parameters ["rclone" "sync" "--dry-run" "mrn-ftp://path/2021/2021-02" "s3:my_bucket/year=2021/month=02/source=3PTY" "-vv"]
2021/03/10 01:51:50 DEBUG : Using config file from "/.config/rclone/rclone.conf"
2021/03/10 01:51:50 DEBUG : Creating backend with remote "mrn-ftp://path/2021/2021-02"
2021/03/10 01:51:51 DEBUG : sftp://xxx:22///path/2021/2021-02: New connection xxx.xxx.xxx.xxx:40240->xxx.xxx.xxx.xxx:22 to "SSH-2.0-AWS_SFTP_1.0"
2021/03/10 01:51:53 DEBUG : Creating backend with remote "s3:my_bucket/year=2021/month=02/source=3PTY"
2021/03/10 01:51:58 DEBUG : S3 bucket my_bucket path /year=2021/month=02/source=3PTY: Waiting for checks to finish
2021/03/10 01:51:58 DEBUG : News.3PTY.20210201.0214.txt.gz: Size and modification time the same (differ by 0s, within tolerance 1s)
2021/03/10 01:51:58 DEBUG : News.3PTY.20210201.0214.txt.gz: Unchanged skipping
...
2021/03/10 01:51:58 DEBUG : Waiting for deletions to finish
2021/03/10 01:51:58 INFO : There was nothing to transfer
2021/03/10 01:51:58 NOTICE:
Transferred: 0 / 0 Bytes, -, 0 Bytes/s, ETA -
Checks: 28 / 28, 100%
Elapsed time: 7.6s
2021/03/10 01:51:58 DEBUG : 27 go routines active
1 Like
system
(system)
Closed
March 13, 2021, 8:22pm
9
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.