Mailinglist Archive: opensuse-buildservice (273 mails)
| < Previous | Next > |
Re: [opensuse-buildservice] OBS on 11,1
- From: Jon Nelson <jnelson-suse@xxxxxxxxxxx>
- Date: Mon, 26 Jan 2009 07:19:25 -0600
- Message-id: <cccedfc60901260519w638884dat7fa78af80e131451@xxxxxxxxxxxxxx>
I posted a solution to this today, but I'll paste it here.
It's really easy to fix:
Find the right file to edit:
rpm -ql osc | grep core.py
edit that file
go to approx. line 1457, or you can search for '512' (sans quotes). The text
only appears once in the file.
You will see a line that looks like this:
if size < 1024*512:
change it so it reads like this:
if size < 1024*512 or True:
which effectively disables using mmap. This fixed the bug for me.
--
Jon
--
To unsubscribe, e-mail: opensuse-buildservice+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-buildservice+help@xxxxxxxxxxxx
It's really easy to fix:
Find the right file to edit:
rpm -ql osc | grep core.py
edit that file
go to approx. line 1457, or you can search for '512' (sans quotes). The text
only appears once in the file.
You will see a line that looks like this:
if size < 1024*512:
change it so it reads like this:
if size < 1024*512 or True:
which effectively disables using mmap. This fixed the bug for me.
--
Jon
--
To unsubscribe, e-mail: opensuse-buildservice+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-buildservice+help@xxxxxxxxxxxx
| < Previous | Next > |