[SCM] build.samba.org - branch master updated

Jelmer Vernooij jelmer at samba.org
Tue Nov 16 17:22:19 MST 2010


The branch, master has been updated
       via  f53728a Unicode encoding hostname if necessary.
      from  3250896 Unicode encoding hostname if necessary.

http://gitweb.samba.org/?p=build-farm.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit f53728a8f2d615246751e272f3697203602baadc
Author: Jelmer Vernooij <jelmer at samba.org>
Date:   Wed Nov 17 01:21:48 2010 +0100

    Unicode encoding hostname if necessary.

-----------------------------------------------------------------------

Summary of changes:
 buildfarm/sqldb.py |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


Changeset truncated at 500 lines:

diff --git a/buildfarm/sqldb.py b/buildfarm/sqldb.py
index b452e42..fdee2dd 100644
--- a/buildfarm/sqldb.py
+++ b/buildfarm/sqldb.py
@@ -210,9 +210,9 @@ class StormCachingBuildResultStore(BuildResultStore):
 
     def get_old_revs(self, tree, host, compiler):
         return self.store.find(StormBuild,
-            StormBuild.tree == tree,
-            StormBuild.host == host,
-            StormBuild.compiler == compiler).order_by(Desc(StormBuild.age))
+            StormBuild.tree == unicode(tree),
+            StormBuild.host == unicode(host),
+            StormBuild.compiler == unicode(compiler)).order_by(Desc(StormBuild.age))
 
 
 class StormCachingBuildFarm(BuildFarm):


-- 
build.samba.org


More information about the samba-cvs mailing list