commit/galaxy-central: carlfeberhard: More reporting for buildbot corrections
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/1895646e8ce0/ changeset: 1895646e8ce0 user: carlfeberhard date: 2013-02-20 02:00:27 summary: More reporting for buildbot corrections affected #: 2 files diff -r bff6388644ba9b2b5ccb102ce01380778fdefdfe -r 1895646e8ce0ed905f7fef8a8fc184ae1606a006 lib/galaxy/app.py --- a/lib/galaxy/app.py +++ b/lib/galaxy/app.py @@ -20,6 +20,9 @@ from galaxy.openid.providers import OpenIDProviders from galaxy.tools.data_manager.manager import DataManagers +import logging +log = logging.getLogger( __name__ ) + class UniverseApplication( object ): """Encapsulates the state of a Universe application""" def __init__( self, **kwargs ): @@ -41,6 +44,8 @@ self.tool_shed_registry = galaxy.tool_shed.tool_shed_registry.Registry( self.config.root, self.config.tool_sheds_config ) else: self.tool_shed_registry = None + log.debug( 'self.config.tool_sheds_config: %s, self.tool_shed_registry: %s', + self.config.tool_sheds_config, self.tool_shed_registry ) # Initialize database / check for appropriate schema version. # If this # is a new installation, we'll restrict the tool migration messaging. from galaxy.model.migrate.check import create_or_verify_database diff -r bff6388644ba9b2b5ccb102ce01380778fdefdfe -r 1895646e8ce0ed905f7fef8a8fc184ae1606a006 scripts/functional_tests.py --- a/scripts/functional_tests.py +++ b/scripts/functional_tests.py @@ -277,7 +277,6 @@ os.makedirs( dir ) except OSError: pass - log.info( "Database connection:", database_connection ) # ---- Build Application -------------------------------------------------- app = None @@ -293,7 +292,7 @@ kwargs[ 'object_store' ] = 'distributed' kwargs[ 'distributed_object_store_config_file' ] = 'distributed_object_store_conf.xml.sample' # Build the Universe Application - log.debug( 'app.kwargs:\n%s', pprint.pformat( kwargs ) ) + print 'app.kwargs:\n%s' %( pprint.pformat( kwargs ) ) app = UniverseApplication( job_queue_workers = 5, id_secret = 'changethisinproductiontoo', template_path = "templates", @@ -321,6 +320,7 @@ running_functional_tests=True, **kwargs ) log.info( "Embedded Universe application started" ) + # ---- Run webserver ------------------------------------------------------ server = None 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.
participants (1)
-
Bitbucket