Missing username and commit messages in output

View: New views
6 Messages — Rating Filter:   Alert me  

Missing username and commit messages in output

by Eric Pugh :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi all,

Using svn version 1.4.5, running on a windows environment, in the  
output we are missing the username and commit messages.  The files  
changed however does work well..  Using an older version of Continuum  
I did have the username and commit messages coming through.

The svn command in the logs looks like:   svn --username ciuser --
password ***** --non-interactive update

Does anyone else see the same behavior?

When I run the update svn command I don't see the author or date or  
commit message listed, so I kinda wonder where that data comes  
from...  I assume something like svn log?  I don't see that in the log  
file, but if I run it I get data formatted like this:

------------------------------------------------------------------------
r675 | jnist | 2008-02-22 16:12:32 +0000 (Fri, 22 Feb 2008) | 1 line

adding initial chart wrapper class


So I am wondering if my SVN client is out of date, or if there is an  
issue with the latest Continuum.

Eric


-----------------------------------------------------
Eric Pugh | Principal | OpenSource Connections, LLC | 434.466.1467 | http://www.opensourceconnections.com




Re: Missing username and commit messages in output

by Mac-Systems :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hello,

using SVN 1.3.x Continuum 1.1 under Linux we see something the same
behavior. I cannot say what causes the problem.

- jens

> Hi all,
>
> Using svn version 1.4.5, running on a windows environment, in the
> output we are missing the username and commit messages.  The files
> changed however does work well..  Using an older version of Continuum
> I did have the username and commit messages coming through.
>
> The svn command in the logs looks like:   svn --username ciuser
> --password ***** --non-interactive update
>
> Does anyone else see the same behavior?
>
> When I run the update svn command I don't see the author or date or
> commit message listed, so I kinda wonder where that data comes
> from...  I assume something like svn log?  I don't see that in the log
> file, but if I run it I get data formatted like this:
>
> ------------------------------------------------------------------------
> r675 | jnist | 2008-02-22 16:12:32 +0000 (Fri, 22 Feb 2008) | 1 line
>
> adding initial chart wrapper class
>
>
> So I am wondering if my SVN client is out of date, or if there is an
> issue with the latest Continuum.
>
> Eric
>
>
> -----------------------------------------------------
> Eric Pugh | Principal | OpenSource Connections, LLC | 434.466.1467 |
> http://www.opensourceconnections.com
>
>
>
>
>


Re: Missing username and commit messages in output

by Eric Pugh :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I've been digging a bit more, and it seems like the problem is that  
this class:

http://svn.apache.org/viewvc/maven/continuum/trunk/continuum-core/src/main/java/org/apache/maven/continuum/scm/DefaultContinuumScm.java?view=markup

doesn't seem to properly be getting the changeset data back. There is  
a method convertScmResult that looks like it is supposed to setup the  
author and comment stuff, but that isn't happening.  Has anyone else  
seen anything along these lines?  When I dig into the  
SvnUpdateConsumer I don't have much luck finding anything about  
handling Authors etc...

http://svn.apache.org/viewvc/maven/scm/trunk/maven-scm-providers/maven-scm-providers-svn/maven-scm-provider-svnexe/src/main/java/org/apache/maven/scm/provider/svn/svnexe/command/update/SvnUpdateConsumer.java?view=log


I'm dubious about my ability to actually make a change to fix this..  
I was hoping it was just "Update to SVN version X" and everything  
would be okay :-)

Eric

On Feb 22, 2008, at 11:16 AM, Eric Pugh wrote:

> Hi all,
>
> Using svn version 1.4.5, running on a windows environment, in the  
> output we are missing the username and commit messages.  The files  
> changed however does work well..  Using an older version of  
> Continuum I did have the username and commit messages coming through.
>
> The svn command in the logs looks like:   svn --username ciuser --
> password ***** --non-interactive update
>
> Does anyone else see the same behavior?
>
> When I run the update svn command I don't see the author or date or  
> commit message listed, so I kinda wonder where that data comes  
> from...  I assume something like svn log?  I don't see that in the  
> log file, but if I run it I get data formatted like this:
>
> ------------------------------------------------------------------------
> r675 | jnist | 2008-02-22 16:12:32 +0000 (Fri, 22 Feb 2008) | 1 line
>
> adding initial chart wrapper class
>
>
> So I am wondering if my SVN client is out of date, or if there is an  
> issue with the latest Continuum.
>
> Eric
>
>
> -----------------------------------------------------
> Eric Pugh | Principal | OpenSource Connections, LLC | 434.466.1467 | http://www.opensourceconnections.com
>
>
>

-----------------------------------------------------
Eric Pugh | Principal | OpenSource Connections, LLC | 434.466.1467 | http://www.opensourceconnections.com




Re: Missing username and commit messages in output

by Ionut S :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Make sure the times on continuum and svn machines are synchronized. We had something similar before..

Eric Pugh <epugh@...> wrote: I've been digging a bit more, and it seems like the problem is that  
this class:

http://svn.apache.org/viewvc/maven/continuum/trunk/continuum-core/src/main/java/org/apache/maven/continuum/scm/DefaultContinuumScm.java?view=markup

doesn't seem to properly be getting the changeset data back. There is  
a method convertScmResult that looks like it is supposed to setup the  
author and comment stuff, but that isn't happening.  Has anyone else  
seen anything along these lines?  When I dig into the  
SvnUpdateConsumer I don't have much luck finding anything about  
handling Authors etc...

http://svn.apache.org/viewvc/maven/scm/trunk/maven-scm-providers/maven-scm-providers-svn/maven-scm-provider-svnexe/src/main/java/org/apache/maven/scm/provider/svn/svnexe/command/update/SvnUpdateConsumer.java?view=log


I'm dubious about my ability to actually make a change to fix this..  
I was hoping it was just "Update to SVN version X" and everything  
would be okay :-)

Eric

On Feb 22, 2008, at 11:16 AM, Eric Pugh wrote:

> Hi all,
>
> Using svn version 1.4.5, running on a windows environment, in the  
> output we are missing the username and commit messages.  The files  
> changed however does work well..  Using an older version of  
> Continuum I did have the username and commit messages coming through.
>
> The svn command in the logs looks like:   svn --username ciuser --
> password ***** --non-interactive update
>
> Does anyone else see the same behavior?
>
> When I run the update svn command I don't see the author or date or  
> commit message listed, so I kinda wonder where that data comes  
> from...  I assume something like svn log?  I don't see that in the  
> log file, but if I run it I get data formatted like this:
>
> ------------------------------------------------------------------------
> r675 | jnist | 2008-02-22 16:12:32 +0000 (Fri, 22 Feb 2008) | 1 line
>
> adding initial chart wrapper class
>
>
> So I am wondering if my SVN client is out of date, or if there is an  
> issue with the latest Continuum.
>
> Eric
>
>
> -----------------------------------------------------
> Eric Pugh | Principal | OpenSource Connections, LLC | 434.466.1467 | http://www.opensourceconnections.com
>
>
>

-----------------------------------------------------
Eric Pugh | Principal | OpenSource Connections, LLC | 434.466.1467 | http://www.opensourceconnections.com





       
---------------------------------
Be a better friend, newshound, and know-it-all with Yahoo! Mobile.  Try it now.

Re: Missing username and commit messages in output

by Emmanuel Venisse-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Yes, the times must be synchronized. In the process, we run a svn update
then a svn log to get detail informations.

Emmanuel

On Tue, Feb 26, 2008 at 9:18 AM, Ionut S <sionut2@...> wrote:

> Make sure the times on continuum and svn machines are synchronized. We had
> something similar before..
>
> Eric Pugh <epugh@...> wrote: I've been digging a bit
> more, and it seems like the problem is that
> this class:
>
>
> http://svn.apache.org/viewvc/maven/continuum/trunk/continuum-core/src/main/java/org/apache/maven/continuum/scm/DefaultContinuumScm.java?view=markup
>
> doesn't seem to properly be getting the changeset data back. There is
> a method convertScmResult that looks like it is supposed to setup the
> author and comment stuff, but that isn't happening.  Has anyone else
> seen anything along these lines?  When I dig into the
> SvnUpdateConsumer I don't have much luck finding anything about
> handling Authors etc...
>
>
> http://svn.apache.org/viewvc/maven/scm/trunk/maven-scm-providers/maven-scm-providers-svn/maven-scm-provider-svnexe/src/main/java/org/apache/maven/scm/provider/svn/svnexe/command/update/SvnUpdateConsumer.java?view=log
>
>
> I'm dubious about my ability to actually make a change to fix this..
> I was hoping it was just "Update to SVN version X" and everything
> would be okay :-)
>
> Eric
>
> On Feb 22, 2008, at 11:16 AM, Eric Pugh wrote:
>
> > Hi all,
> >
> > Using svn version 1.4.5, running on a windows environment, in the
> > output we are missing the username and commit messages.  The files
> > changed however does work well..  Using an older version of
> > Continuum I did have the username and commit messages coming through.
> >
> > The svn command in the logs looks like:   svn --username ciuser --
> > password ***** --non-interactive update
> >
> > Does anyone else see the same behavior?
> >
> > When I run the update svn command I don't see the author or date or
> > commit message listed, so I kinda wonder where that data comes
> > from...  I assume something like svn log?  I don't see that in the
> > log file, but if I run it I get data formatted like this:
> >
> > ------------------------------------------------------------------------
> > r675 | jnist | 2008-02-22 16:12:32 +0000 (Fri, 22 Feb 2008) | 1 line
> >
> > adding initial chart wrapper class
> >
> >
> > So I am wondering if my SVN client is out of date, or if there is an
> > issue with the latest Continuum.
> >
> > Eric
> >
> >
> > -----------------------------------------------------
> > Eric Pugh | Principal | OpenSource Connections, LLC | 434.466.1467 |
> http://www.opensourceconnections.com
> >
> >
> >
>
> -----------------------------------------------------
> Eric Pugh | Principal | OpenSource Connections, LLC | 434.466.1467 |
> http://www.opensourceconnections.com
>
>
>
>
>
>
> ---------------------------------
> Be a better friend, newshound, and know-it-all with Yahoo! Mobile.  Try it
> now.
>

Re: Missing username and commit messages in output

by Eric Pugh :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Okay, that is most likely it then!   The Continuum server is running  
on GMT and the Subversion server is running on EST!

Thanks!

Eric


On Feb 26, 2008, at 3:28 AM, Emmanuel Venisse wrote:

> Yes, the times must be synchronized. In the process, we run a svn  
> update
> then a svn log to get detail informations.
>
> Emmanuel
>
> On Tue, Feb 26, 2008 at 9:18 AM, Ionut S <sionut2@...> wrote:
>
>> Make sure the times on continuum and svn machines are synchronized.  
>> We had
>> something similar before..
>>
>> Eric Pugh <epugh@...> wrote: I've been  
>> digging a bit
>> more, and it seems like the problem is that
>> this class:
>>
>>
>> http://svn.apache.org/viewvc/maven/continuum/trunk/continuum-core/src/main/java/org/apache/maven/continuum/scm/DefaultContinuumScm.java?view=markup
>>
>> doesn't seem to properly be getting the changeset data back. There is
>> a method convertScmResult that looks like it is supposed to setup the
>> author and comment stuff, but that isn't happening.  Has anyone else
>> seen anything along these lines?  When I dig into the
>> SvnUpdateConsumer I don't have much luck finding anything about
>> handling Authors etc...
>>
>>
>> http://svn.apache.org/viewvc/maven/scm/trunk/maven-scm-providers/maven-scm-providers-svn/maven-scm-provider-svnexe/src/main/java/org/apache/maven/scm/provider/svn/svnexe/command/update/SvnUpdateConsumer.java?view=log
>>
>>
>> I'm dubious about my ability to actually make a change to fix this..
>> I was hoping it was just "Update to SVN version X" and everything
>> would be okay :-)
>>
>> Eric
>>
>> On Feb 22, 2008, at 11:16 AM, Eric Pugh wrote:
>>
>>> Hi all,
>>>
>>> Using svn version 1.4.5, running on a windows environment, in the
>>> output we are missing the username and commit messages.  The files
>>> changed however does work well..  Using an older version of
>>> Continuum I did have the username and commit messages coming  
>>> through.
>>>
>>> The svn command in the logs looks like:   svn --username ciuser --
>>> password ***** --non-interactive update
>>>
>>> Does anyone else see the same behavior?
>>>
>>> When I run the update svn command I don't see the author or date or
>>> commit message listed, so I kinda wonder where that data comes
>>> from...  I assume something like svn log?  I don't see that in the
>>> log file, but if I run it I get data formatted like this:
>>>
>>> ------------------------------------------------------------------------
>>> r675 | jnist | 2008-02-22 16:12:32 +0000 (Fri, 22 Feb 2008) | 1 line
>>>
>>> adding initial chart wrapper class
>>>
>>>
>>> So I am wondering if my SVN client is out of date, or if there is an
>>> issue with the latest Continuum.
>>>
>>> Eric
>>>
>>>
>>> -----------------------------------------------------
>>> Eric Pugh | Principal | OpenSource Connections, LLC | 434.466.1467 |
>> http://www.opensourceconnections.com
>>>
>>>
>>>
>>
>> -----------------------------------------------------
>> Eric Pugh | Principal | OpenSource Connections, LLC | 434.466.1467 |
>> http://www.opensourceconnections.com
>>
>>
>>
>>
>>
>>
>> ---------------------------------
>> Be a better friend, newshound, and know-it-all with Yahoo! Mobile.  
>> Try it
>> now.
>>

-----------------------------------------------------
Eric Pugh | Principal | OpenSource Connections, LLC | 434.466.1467 | http://www.opensourceconnections.com