2 new commits in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/46c5752b2bbb/ Changeset: 46c5752b2bbb User: natefoo Date: 2013-07-02 10:12:45 Summary: Bugfix for distributed object store free space monitor thread. Affected #: 1 file diff -r 2cabbf3687634090fbbc024726f15f43db4ff314 -r 46c5752b2bbbc0a606ecfd04356f6e9a6635c19c lib/galaxy/objectstore/__init__.py --- a/lib/galaxy/objectstore/__init__.py +++ b/lib/galaxy/objectstore/__init__.py @@ -880,7 +880,8 @@ self.__parse_distributed_config(config) - if self.global_max_percent_full or filter(lambda x: x is not None, self.max_percent_full.values()): + self.sleeper = None + if self.global_max_percent_full or filter(lambda x: x != 0.0, self.max_percent_full.values()): self.sleeper = Sleeper() self.filesystem_monitor_thread = threading.Thread(target=self.__filesystem_monitor) self.filesystem_monitor_thread.start() @@ -931,7 +932,8 @@ def shutdown(self): super(DistributedObjectStore, self).shutdown() - self.sleeper.wake() + if self.sleeper is not None: + self.sleeper.wake() def exists(self, obj, **kwargs): return self.__call_method('exists', obj, False, False, **kwargs) https://bitbucket.org/galaxy/galaxy-central/commits/a600d1f3f900/ Changeset: a600d1f3f900 User: natefoo Date: 2013-07-02 10:13:02 Summary: Upgrade pbs_python to 4.3.5 Affected #: 1 file diff -r 46c5752b2bbbc0a606ecfd04356f6e9a6635c19c -r a600d1f3f9009f383d8f4667f48592450b9154cf eggs.ini --- a/eggs.ini +++ b/eggs.ini @@ -19,7 +19,7 @@ mercurial = 2.2.3 MySQL_python = 1.2.3c1 numpy = 1.6.0 -pbs_python = 4.1.0 +pbs_python = 4.3.5 psycopg2 = 2.0.13 pycrypto = 2.5 pysam = 0.4.2 Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.