Roundup Tracker - Issues

Message5569

Author rouilj
Recipients rouilj
Date 2016-05-29.22:29:52
Message-id <1464560994.0.0.411653443213.issue2550908@psf.upfronthosting.co.za>
In-reply-to
The default value for max_attachment_size is set in
roundup/configuration.py. It is set to:


           (IntegerNumberOption, "max_attachment_size", sys.maxint,

sys.maxint is 2147483647 in 32 bit python ~ 2G. Large but not bad.
However on a 64 bit python we get: 9223372036854775807L

I suggest setting it to the 32 bit maxint (2^31 -1).
History
Date User Action Args
2016-05-29 22:29:54rouiljsetrecipients: + rouilj
2016-05-29 22:29:54rouiljsetmessageid: <1464560994.0.0.411653443213.issue2550908@psf.upfronthosting.co.za>
2016-05-29 22:29:53rouiljlinkissue2550908 messages
2016-05-29 22:29:52rouiljcreate