timeout in eppic.mk
Hi Dave
* When I build crash, including the extension directory, I get a “Connection timeout” for the git clone command in eppic.mk. For some reason this command fails in my environment. As this timeout is 10 minutes I just wonder if it is possible to make some change in the make file to avoid this waiting time. I could of course remove the eppic extension but I want to make as few changes in the file structure for crash as possible. * Jan * * Jan Karlsson Senior Software Engineer MIB * Sony Mobile Communications Tel: +46703062174 sonymobile.com * * -- Crash-utility mailing list Crash-utility@redhat.com https://www.redhat.com/mailman/listinfo/crash-utility |
timeout in eppic.mk
----- Original Message -----
> > Hi Dave > > When I build crash, including the extension directory, I get a > “Connection timeout” for the git clone command in eppic.mk. For some > reason this command fails in my environment. As this timeout is 10 > minutes I just wonder if it is possible to make some change in the > make file to avoid this waiting time. I could of course remove the > eppic extension but I want to make as few changes in the file > structure for crash as possible. > > Jan I don't know if there's a git option that can be used here. If you "ping code.google.com", does it fail? Dave -- Crash-utility mailing list Crash-utility@redhat.com https://www.redhat.com/mailman/listinfo/crash-utility |
timeout in eppic.mk
I looked shortly for git options but I did not find any.
The ping command also fails (our firewall??) Jan Jan Karlsson Senior Software Engineer MIB * Sony Mobile Communications Tel: +46703062174 sonymobile.com * -----Original Message----- From: crash-utility-bounces@redhat.com [mailto:crash-utility-bounces@redhat.com] On Behalf Of Dave Anderson Sent: måndag den 16 juli 2012 15:13 To: Discussion list for crash utility usage, maintenance and development Subject: Re: [Crash-utility] timeout in eppic.mk ----- Original Message ----- > > Hi Dave > > When I build crash, including the extension directory, I get a > “Connection timeout” for the git clone command in eppic.mk. For some > reason this command fails in my environment. As this timeout is 10 > minutes I just wonder if it is possible to make some change in the > make file to avoid this waiting time. I could of course remove the > eppic extension but I want to make as few changes in the file > structure for crash as possible. > > Jan I don't know if there's a git option that can be used here. If you "ping code.google.com", does it fail? Dave -- Crash-utility mailing list Crash-utility@redhat.com https://www.redhat.com/mailman/listinfo/crash-utility -- Crash-utility mailing list Crash-utility@redhat.com https://www.redhat.com/mailman/listinfo/crash-utility |
timeout in eppic.mk
On 07/17/2012 01:16 PM, Karlsson, Jan wrote:
> I looked shortly for git options but I did not find any. > The ping command also fails (our firewall??) > > Jan If you can clone the repo somewhere on your local network you could play /etc/hosts tricks to redirect the eppic.mk invocation to it to grab the source and avoid the need to get out from your network. Regards, Bryn. -- Crash-utility mailing list Crash-utility@redhat.com https://www.redhat.com/mailman/listinfo/crash-utility |
timeout in eppic.mk
----- Original Message -----
> I looked shortly for git options but I did not find any. > The ping command also fails (our firewall??) > > Jan OK, so perhaps a shell command can be shoehorned into eppic.mk that does a "ping -c 1 code.google.com" and captures the return status? Dave > > Jan Karlsson > Senior Software Engineer > MIB > * > Sony Mobile Communications > Tel: +46703062174 > sonymobile.com > * > > > > -----Original Message----- > From: crash-utility-bounces@redhat.com > [mailto:crash-utility-bounces@redhat.com] On Behalf Of Dave Anderson > Sent: måndag den 16 juli 2012 15:13 > To: Discussion list for crash utility usage, maintenance and > development > Subject: Re: [Crash-utility] timeout in eppic.mk > > > > ----- Original Message ----- > > > > Hi Dave > > > > When I build crash, including the extension directory, I get a > > “Connection timeout” for the git clone command in eppic.mk. For > > some > > reason this command fails in my environment. As this timeout is 10 > > minutes I just wonder if it is possible to make some change in the > > make file to avoid this waiting time. I could of course remove the > > eppic extension but I want to make as few changes in the file > > structure for crash as possible. > > > > Jan > > I don't know if there's a git option that can be used here. > If you "ping code.google.com", does it fail? > > Dave > > -- > Crash-utility mailing list > Crash-utility@redhat.com > https://www.redhat.com/mailman/listinfo/crash-utility > > -- > Crash-utility mailing list > Crash-utility@redhat.com > https://www.redhat.com/mailman/listinfo/crash-utility > -- Crash-utility mailing list Crash-utility@redhat.com https://www.redhat.com/mailman/listinfo/crash-utility |
timeout in eppic.mk
----- Original Message -----
> On 07/17/2012 01:16 PM, Karlsson, Jan wrote: > > I looked shortly for git options but I did not find any. > > The ping command also fails (our firewall??) > > > > Jan > > If you can clone the repo somewhere on your local network you could play > /etc/hosts tricks to redirect the eppic.mk invocation to it to grab the > source and avoid the need to get out from your network. > > Regards, > Bryn. Or just manually copy the eppic git tree into the extensions subdirectory. If the "eppic/applications/crash/eppic.c" already exists, the git operation is not done. Dave -- Crash-utility mailing list Crash-utility@redhat.com https://www.redhat.com/mailman/listinfo/crash-utility |
timeout in eppic.mk
----- Original Message -----
> > > ----- Original Message ----- > > I looked shortly for git options but I did not find any. > > The ping command also fails (our firewall??) > > > > Jan > > OK, so perhaps a shell command can be shoehorned into eppic.mk > that does a "ping -c 1 code.google.com" and captures the return > status? > > Dave > Jan, Can you try the attached patch to extensions/eppic.mk? Thanks, Dave -- Crash-utility mailing list Crash-utility@redhat.com https://www.redhat.com/mailman/listinfo/crash-utility |
timeout in eppic.mk
Thanks Dave, the patch works as intended for me. I now get a 10 sec timeout instead of the 10 min timeout I had before, followed by the message "failed to pull epic code .....".
Jan Jan Karlsson Senior Software Engineer MIB * Sony Mobile Communications Tel: +46703062174 sonymobile.com * -----Original Message----- From: crash-utility-bounces@redhat.com [mailto:crash-utility-bounces@redhat.com] On Behalf Of Dave Anderson Sent: tisdag den 17 juli 2012 16:22 To: Discussion list for crash utility usage, maintenance and development Subject: Re: [Crash-utility] timeout in eppic.mk ----- Original Message ----- > > > ----- Original Message ----- > > I looked shortly for git options but I did not find any. > > The ping command also fails (our firewall??) > > > > Jan > > OK, so perhaps a shell command can be shoehorned into eppic.mk that > does a "ping -c 1 code.google.com" and captures the return status? > > Dave > Jan, Can you try the attached patch to extensions/eppic.mk? Thanks, Dave -- Crash-utility mailing list Crash-utility@redhat.com https://www.redhat.com/mailman/listinfo/crash-utility |
timeout in eppic.mk
----- Original Message -----
> Thanks Dave, the patch works as intended for me. I now get a 10 sec > timeout instead of the 10 min timeout I had before, followed by the > message "failed to pull epic code .....". Right, although I'm surprised that you have a 10 second timeout. If I put in a valid name of a machine that I've shut down, the "ping -c 1 <name>" only takes about 1 second to return a failure. Anyway, I'll queue that change for crash-6.0.9. Thanks, Dave -- Crash-utility mailing list Crash-utility@redhat.com https://www.redhat.com/mailman/listinfo/crash-utility |
timeout in eppic.mk
Hi
I searched for information on this and it seems that the timeout is dependent on Linux installation. 10 sec seems also to be a not uncommon default timeout. If you want to set the timeout you can use the -W option. ping -c 1 -W 1 code.google.com will timeout after 1 sec for me. Jan Jan Karlsson Senior Software Engineer MIB * Sony Mobile Communications Tel: +46703062174 sonymobile.com * -----Original Message----- From: crash-utility-bounces@redhat.com [mailto:crash-utility-bounces@redhat.com] On Behalf Of Dave Anderson Sent: onsdag den 18 juli 2012 15:19 To: Discussion list for crash utility usage, maintenance and development Subject: Re: [Crash-utility] timeout in eppic.mk ----- Original Message ----- > Thanks Dave, the patch works as intended for me. I now get a 10 sec > timeout instead of the 10 min timeout I had before, followed by the > message "failed to pull epic code .....". Right, although I'm surprised that you have a 10 second timeout. If I put in a valid name of a machine that I've shut down, the "ping -c 1 <name>" only takes about 1 second to return a failure. Anyway, I'll queue that change for crash-6.0.9. Thanks, Dave -- Crash-utility mailing list Crash-utility@redhat.com https://www.redhat.com/mailman/listinfo/crash-utility -- Crash-utility mailing list Crash-utility@redhat.com https://www.redhat.com/mailman/listinfo/crash-utility |
| All times are GMT. The time now is 04:56 AM. |
VBulletin, Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2007, Crawlability, Inc.