[Buildbot-commits] buildbot/buildbot/slave commands.py,1.92,1.93

Brian Warner warner at users.sourceforge.net
Fri Mar 21 00:07:04 UTC 2008


Update of /cvsroot/buildbot/buildbot/buildbot/slave
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv19820/buildbot/slave

Modified Files:
	commands.py 
Log Message:
[project @ #188:no-auth-cache.patch]
Suggested by marcusl; add the --no-auth-cache option to svn
invocations to avoid caching buildbot's credentials.

Original author: dustin at v.igoro.us
Date: 2008-02-17 17:48:50+00:00

Index: commands.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/slave/commands.py,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -d -r1.92 -r1.93
--- commands.py	1 Jan 2008 02:46:37 -0000	1.92
+++ commands.py	21 Mar 2008 00:07:02 -0000	1.93
@@ -1530,12 +1530,12 @@
         d = self.builder.basedir
         if self.mode == "export":
             command = [self.vcexe, 'export', '--revision', str(revision),
-                       '--non-interactive',
+                       '--non-interactive', '--no-auth-cache',
                        self.svnurl, self.srcdir]
         else:
             # mode=='clobber', or copy/update on a broken workspace
             command = [self.vcexe, 'checkout', '--revision', str(revision),
-                       '--non-interactive',
+                       '--non-interactive', '--no-auth-cache',
                        self.svnurl, self.srcdir]
         c = ShellCommand(self.builder, command, d,
                          sendRC=False, timeout=self.timeout,





More information about the Commits mailing list