Actually, what ended up happening is I was in the parent directory of
where I was supposed to be. That is, I checked out something from CVS
but didn't go in to what I checked out, so it wasn't finding the CVS
directory.  It works without changing post-review now.

But Another problem is appearing now.  Once it tries to do the post, I
get an error that the connection was refused on port 2401.  I'm
guessing this is because we're using ssh tunnels only to connect to
our CVS servers.  Is there some special way to configure my repository
through the web interface to make it work through the ssh tunnel? Or
to configure my environment somehow?  I don't know very much about CVS
unfortunately.  I'm doing this to help a colleague.

On Jan 19, 12:59 pm, Chris Clark <chris.cl...@ingres.com> wrote:
> Christian Hammond wrote:
> > What you could do now is modify postreview.py so that the CVSClient
> > instance is created before the ClearCaseClient. That would guarantee
> > that CVS would check first.
>
> An easy technique for dealing with this is to add another definition for
> SCMCLIENTS, this way if the SCMCLIENTS is ever changed upstream it is
> still possible to automatically merge your diffs without a manual
> conflict resolution, e.g.immediate after SCMCLIENTS:
>
> SCMCLIENTS = (
>     SVNClient(),
>     CVSClient(),
>     GitClient(),
>     MercurialClient(),
>     PerforceClient(),
>     ClearCaseClient(),
> )
>
> ####################################################################
>
> ### re-define SCMCLIENTS, this makes merging changes easier (than
> customizing SCMCLIENTS) :-)
> SCMCLIENTS = (
>     SVNClient(),
>     PiccoloClient(),
> )
> ####################################################################
>
> Sort of brute force but it works :-)
>
> Chris
-- 
Want to help the Review Board project? Donate today at 
http://www.reviewboard.org/donate/
Happy user? Let us know at http://www.reviewboard.org/users/
-~----------~----~----~----~------~----~------~--~---
To unsubscribe from this group, send email to 
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/reviewboard?hl=en

Reply via email to