I'm proxying lsws to a mongrel backend serving my rails app in my development environment.
Ive noticed that a url such as /locations/6/edit? causes lsws and mongrel to go crazy. Mongrel ends up dying. lsws debug output of what its trying to do is here:
http://stat.im/lsws.error.log.txt
Mongrel does this:
#<RangeError: 0x1d4e8dc is recycled object>
#<RangeError: 0x1d4c640 is recycled object>
#<RangeError: 0x1d4dcca is recycled object>
#<RangeError: 0x1d4e36e is recycled object>
#<RangeError: 0x1d4c064 is recycled object>
.... a bunch more times ....
#<RangeError: 0x1d4d310 is recycled object>
Illegal instruction
It looks to me like its trying to connect to mongrel an amazing amount of times and keeps getting rejected.
If I hit mongrel with the same url with the ? at the end it works. So im not sure if there is some translation process occurring that is modifying something?
Unfortunately, I have no idea if this is a lsws proxy issue or a mongrel issue, so sorry in advance.
Joe
Ive noticed that a url such as /locations/6/edit? causes lsws and mongrel to go crazy. Mongrel ends up dying. lsws debug output of what its trying to do is here:
http://stat.im/lsws.error.log.txt
Mongrel does this:
#<RangeError: 0x1d4e8dc is recycled object>
#<RangeError: 0x1d4c640 is recycled object>
#<RangeError: 0x1d4dcca is recycled object>
#<RangeError: 0x1d4e36e is recycled object>
#<RangeError: 0x1d4c064 is recycled object>
.... a bunch more times ....
#<RangeError: 0x1d4d310 is recycled object>
Illegal instruction
It looks to me like its trying to connect to mongrel an amazing amount of times and keeps getting rejected.
If I hit mongrel with the same url with the ? at the end it works. So im not sure if there is some translation process occurring that is modifying something?
Unfortunately, I have no idea if this is a lsws proxy issue or a mongrel issue, so sorry in advance.
Joe