Skip to content

Commit

Permalink
Change mesos version to 0.25.1 (resolves BD2KGenomics#166)
Browse files Browse the repository at this point in the history
  • Loading branch information
jpfeil committed May 17, 2016
1 parent 7dc4ce1 commit 5923b73
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion core/src/cgcloud/core/mesos_box.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ class MesosBox( UbuntuBox ):
"""

def _mesos_version( self ):
return '0.25.1'

def _mesos_egg_version( self ):
return '0.25.0'

@fabric_task
Expand All @@ -33,7 +36,7 @@ def _post_install_packages( self ):

@fabric_task
def __install_mesos_egg( self ):
egg = 'mesos-' + self._mesos_version( ) + '-py2.7-linux-x86_64.egg'
egg = 'mesos-' + self._mesos_egg_version( ) + '-py2.7-linux-x86_64.egg'
version = self.release( ).version
run( fmt( 'wget http://downloads.mesosphere.io/master/ubuntu/{version}/{egg}' ) )
# We need a newer version of protobuf than what comes default on Ubuntu
Expand Down

0 comments on commit 5923b73

Please sign in to comment.