Changes between Initial Version and Version 1 of Ticket #1212
- Timestamp:
- 2010-09-25T15:47:48Z (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1212 – Description
initial v1 15 15 Everything worked fine on 1.7.1 and shares.happy = 3 (didn't changed it after upgrade). So I did a little investigation and found the problem. It's immutable/repairer.py, line 60: 16 16 17 18 {{{ 17 19 happy = upload.BaseUploadable.default_encoding_param_happy 20 }}} 21 18 22 19 23 Why do we use default happy here? It definitely should be read from 20 24 the config. I didin't dig further but replaced it with ugly hack: 21 25 26 27 {{{ 22 28 happy = 3 #upload.BaseUploadable.default_encoding_param_happy 29 }}} 30 23 31 24 32 ...and the problem has gone! Repairing works with just 6 servers