You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl@perl.apache.org by Grant <em...@gmail.com> on 2012/12/14 23:41:02 UTC

2.0.4 works, 2.0.7 doesn't

I'm using Interchange::Link for linking mod_perl to Interchange (
icdevgroup.org).  It works with 2.0.4 but breaks with 2.0.7.  Someone told
me they tracked it down to line 684:

while( <SOCK> ) {

https://github.com/interchange/interchange/blob/master/dist/src/mod_perl2/Interchange/Link.pm

I know this isn't much to go on, but were there any changes between those
versions that are a likely candidate?

- Grant

Re: 2.0.4 works, 2.0.7 doesn't

Posted by Grant <em...@gmail.com>.
>> I'm using Interchange::Link for linking mod_perl to Interchange (
>> icdevgroup.org).  It works with 2.0.4 but breaks with 2.0.7.  Someone told
>> me they tracked it down to line 684:
>>
>> while( <SOCK> ) {
>>
>> https://github.com/interchange/interchange/blob/master/dist/src/mod_perl2/Interchange/Link.pm
>>
>> I know this isn't much to go on, but were there any changes between those
>> versions that are a likely candidate?
>
> Since SOCK is completely handled by Perl I really doubt that modperl
> does cause any problems with this line of code. I think your problem is
> elsewhere.
>
> I'd check what exactly is written to the socket before reading it and
> what comes out of it.
>
> Torsten

I'm told that Interchange::Link tries to read from the socket and gets
no response.  Any ideas?

- Grant

Re: 2.0.4 works, 2.0.7 doesn't

Posted by Torsten Förtsch <to...@gmx.net>.
On 12/14/2012 11:41 PM, Grant wrote:
> I'm using Interchange::Link for linking mod_perl to Interchange (
> icdevgroup.org).  It works with 2.0.4 but breaks with 2.0.7.  Someone told
> me they tracked it down to line 684:
> 
> while( <SOCK> ) {
> 
> https://github.com/interchange/interchange/blob/master/dist/src/mod_perl2/Interchange/Link.pm
> 
> I know this isn't much to go on, but were there any changes between those
> versions that are a likely candidate?

Since SOCK is completely handled by Perl I really doubt that modperl
does cause any problems with this line of code. I think your problem is
elsewhere.

I'd check what exactly is written to the socket before reading it and
what comes out of it.

Torsten