[Bug 12527] Sender waits for timeout when fuzzy basis file found

samba-bugs at samba.org samba-bugs at samba.org
Sun Feb 12 17:51:53 UTC 2017


https://bugzilla.samba.org/show_bug.cgi?id=12527

--- Comment #2 from Ben RUBSON <ben.rubson at gmail.com> ---
I'm troubleshooting and found that this happens when generate_and_send_sums()
writes too many bufs.

If I replace :
for (i = 0; i < sum.count; i++) {
by :
for (i = 0; i < 4500; i++) {
(sum.count > 15000 in this test)

It works as expected, sender exits correctly writing down all error messages
from the server.

If I replace :
for (i = 0; i < sum.count; i++) {
by :
for (i = 0; i < 4900; i++) {

It fails as explained above.

-- 
You are receiving this mail because:
You are the QA Contact for the bug.



More information about the rsync mailing list