Обсуждение: 8.2 CVS checkout hangs?

Поиск
Список
Период
Сортировка

8.2 CVS checkout hangs?

От
Neil Conway
Дата:
Can anyone else with an account on cvs.postgresql.org successfully
checkout a copy of the REL8_2_STABLE branch? I've tried a few times, but
the checkout reaches the same point and then does not continue:

$ cvs -d:pserver:neilc@cvs.postgresql.org:/cvsroot co -rREL8_2_STABLE -d
8.2_official_pg_tree pgsql
[...]
U 8.2_official_pg_tree/src/tutorial/complex.c
U 8.2_official_pg_tree/src/tutorial/complex.source
U 8.2_official_pg_tree/src/tutorial/funcs.c
U 8.2_official_pg_tree/src/tutorial/funcs.source

cvs is blocked waiting for select(2), and hasn't made any progress in
about the last 7 hours or so. Can anyone else reproduce this?

-Neil




Re: 8.2 CVS checkout hangs?

От
"Andrew Dunstan"
Дата:
Neil Conway wrote:
> Can anyone else with an account on cvs.postgresql.org successfully
checkout a copy of the REL8_2_STABLE branch? I've tried a few times, but
the checkout reaches the same point and then does not continue:
>
> $ cvs -d:pserver:neilc@cvs.postgresql.org:/cvsroot co -rREL8_2_STABLE -d
8.2_official_pg_tree pgsql

Why the heck are you using :pserver:? I always use :ext: for non-anon.
:ext: at least is working for me.

cheers

andrew






Re: 8.2 CVS checkout hangs?

От
Alvaro Herrera
Дата:
Andrew Dunstan wrote:
> Neil Conway wrote:
> > Can anyone else with an account on cvs.postgresql.org successfully
> checkout a copy of the REL8_2_STABLE branch? I've tried a few times, but
> the checkout reaches the same point and then does not continue:
> >
> > $ cvs -d:pserver:neilc@cvs.postgresql.org:/cvsroot co -rREL8_2_STABLE -d
> 8.2_official_pg_tree pgsql
> 
> Why the heck are you using :pserver:? I always use :ext: for non-anon.
> :ext: at least is working for me.

Hmm, I didn't stop to think about it, and since I didn't have a copy
already I just copied and pasted Neil's line, which worked on the first
try :-)

Maybe there's a content firewall that doesn't like what it sees in the
packet inside that file and drops the connection ... but since it's
using SSH this is not very likely.

-- 
Alvaro Herrera                                http://www.CommandPrompt.com/
PostgreSQL Replication, Consulting, Custom Development, 24x7 support


Re: 8.2 CVS checkout hangs?

От
Tom Lane
Дата:
"Andrew Dunstan" <andrew@dunslane.net> writes:
> Neil Conway wrote:
>> Can anyone else with an account on cvs.postgresql.org successfully
>> checkout a copy of the REL8_2_STABLE branch? I've tried a few times, but
>> the checkout reaches the same point and then does not continue:
>> 
>> $ cvs -d:pserver:neilc@cvs.postgresql.org:/cvsroot co -rREL8_2_STABLE -d
>> 8.2_official_pg_tree pgsql

> Why the heck are you using :pserver:?

Because that's what you're supposed to use?

A fresh checkout just worked for me, and did work on a couple of other
machines on Sunday.  So I think Neil's got a connectivity problem.
        regards, tom lane


Re: 8.2 CVS checkout hangs?

От
Neil Conway
Дата:
On Tue, 2006-12-05 at 23:20 -0300, Alvaro Herrera wrote:
> Andrew Dunstan wrote:
> > Why the heck are you using :pserver:?

I do what Marc tells me to do :)

> Maybe there's a content firewall that doesn't like what it sees in the
> packet inside that file and drops the connection ... but since it's
> using SSH this is not very likely.

Hmm, how bizarre. Anyway, it seems that after killing off the checkout
and then cvs up'ing, I can get what appears to be a valid checkout.

Thanks,

Neil