Skip to content

Commit

Permalink
add new config parameter to indicate if the communication application…
Browse files Browse the repository at this point in the history
… is active
  • Loading branch information
bgruening committed May 28, 2016
1 parent f2ccbc6 commit 67bb087
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions config/galaxy.ini.sample
Expand Up @@ -1202,6 +1202,7 @@ use_interactive = True
#amqp_internal_connection = sqlalchemy+sqlite:///./database/control.sqlite?isolation_level=IMMEDIATE

# Galaxy real time communication server settings
#enable_communication_server = False
#communication_server_host = http://localhost
#communication_server_port = 7070

Expand Down
1 change: 1 addition & 0 deletions lib/galaxy/config.py
Expand Up @@ -219,6 +219,7 @@ def __init__( self, **kwargs ):
self.track_jobs_in_database = string_as_bool( kwargs.get( 'track_jobs_in_database', 'True') )
self.start_job_runners = listify(kwargs.get( 'start_job_runners', '' ))
self.expose_dataset_path = string_as_bool( kwargs.get( 'expose_dataset_path', 'False' ) )
self.enable_communication_server = string_as_bool( kwargs.get( 'enable_communication_server', 'False' ) )
self.communication_server_host = kwargs.get( 'communication_server_host', 'http://localhost' )
self.communication_server_port = int( kwargs.get( 'communication_server_port', '7070' ) )
# External Service types used in sample tracking
Expand Down

0 comments on commit 67bb087

Please sign in to comment.