[JIRA] [subversion-plugin] (JENKINS-30196) SVN Exception : svn: E210004: Malformed network data

2015-12-11 Thread briancri...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Brian Cribbs commented on  JENKINS-30196 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: SVN Exception : svn: E210004: Malformed network data  
 
 
 
 
 
 
 
 
 
 
I don't know how I could help you replicate the configuration scenario we've got. 
Jenkins is running in Tomcat on a server in Azure. Subversion is running on a Linux server on-premise with a VPN link between them. If I SSH into the Jenkins server using the same user that Tomcat runs as, I can execute the raw SVN commands on the command line successfully. I can also execute the svnkit commands successfully from the command line on the server 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [subversion-plugin] (JENKINS-30196) SVN Exception : svn: E210004: Malformed network data

2015-12-11 Thread briancri...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Brian Cribbs commented on  JENKINS-30196 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: SVN Exception : svn: E210004: Malformed network data  
 
 
 
 
 
 
 
 
 
 
The problem isn't with the environment, it's 100% related to the plugin. If I force it to download a specific revision or HEAD by putting @HEAD or @Revision in the URL it works. Based on this I think the code that's trying to create a revision using a date is failing and the subversion server can't figure out what to do. 
Amitej Priyadarshi Can you see if adding @HEAD to your SVN URL also fixes your issue? 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [subversion-plugin] (JENKINS-30196) SVN Exception : svn: E210004: Malformed network data

2015-12-11 Thread briancri...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Brian Cribbs commented on  JENKINS-30196 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: SVN Exception : svn: E210004: Malformed network data  
 
 
 
 
 
 
 
 
 
 
I'm just here to +1 this. I've tried every version of the plugin to no avail. I can use SVNkit from the command line no problem but Jenkins gets this error. We are using the svn:// protocol. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [subversion-plugin] (JENKINS-30196) SVN Exception : svn: E210004: Malformed network data

2015-12-11 Thread briancri...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Brian Cribbs commented on  JENKINS-30196 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: SVN Exception : svn: E210004: Malformed network data  
 
 
 
 
 
 
 
 
 
 
I don't know exactly what's causing it so I don't know how to tell you to replicate it. 
If I enter the URL with @HEAD or a specific revision number, it works Updating svn://foo.com/svn/project/trunk@HEAD at revision HEAD 
If I enter the URL without a revision, it blows up Updating svn://foo.com/svn/project/trunk at revision '2015-12-11T20:42:38.326 +' 
date -u on the jenkins server outputs Fri Dec 11 20:40:27 UTC 2015 
date -u on the subversion server outputs Fri Dec 11 21:12:18 UTC 2015 
The format of the output in the logs leads me to believe that r.getDate() == null 

 

CheckoutUpdater.java
private static final FastDateFormat fmt = FastDateFormat.getInstance("''-MM-dd'T'HH:mm:ss.SSS Z''");
---snip---
SVNRevision r = getRevision(location);

String revisionName = r.getDate() != null ?
		fmt.format(r.getDate()) : r.toString();
	
listener.getLogger().println("Checking out " + location.remote + " at revision " + revisionName);
---snip---

SVNRevision.java
 /**
 * Gives a string representation of this object.
 * 
 * @return a string representing this object
 */
public String toString() {
if (myRevision >= 0) {
return Long.toString(myRevision);
} else if (myName != null) {
return myName;
} else if (myDate != null) {
return DateFormat.getDateTimeInstance().format(myDate);
}
return "{invalid revision}";
}
 

 
If you can tell me what repository I need to add to maven to get it to resolve the jenkins plugin stuff I'll throw a bunch of logging in this, build it, and run it on my server 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265)