Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change LocalFileServer to allow respecting storm.yaml's nimbus.host #167

Merged
merged 2 commits into from
Aug 16, 2016

Commits on Aug 14, 2016

  1. Change LocalFileServer to allow respecting storm.yaml's nimbus.host

    Prior to this the only way to configure the URL that LocalFileServer listens
    to is via MESOS_NIMBUS_HOST environment variable.  That differs from the
    behavior of the core MesosNimbus which supports that env variable, as well
    as the nimbus.host field in the storm.yaml config.  So update the code to
    make them equally configurable.
    erikdw committed Aug 14, 2016
    Configuration menu
    Copy the full SHA
    ae76958 View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2016

  1. remove hardcoding of docker-engine package version

    This is needed to allow the travis-ci builds to succeed.
    It was failing with errors like this:
    
    ```
    $ travis_retry sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-engine=${TRAVIS_DOCKER_VERSION}
    Reading package lists... Done
    Building dependency tree
    Reading state information... Done
    Recommended packages:
      yubico-piv-tool
    The following packages will be DOWNGRADED:
      docker-engine
    0 upgraded, 0 newly installed, 1 downgraded, 0 to remove and 15 not upgraded.
    Need to get 8,725 kB of archives.
    After this operation, 58.0 MB disk space will be freed.
    E: There are problems and -y was used without --force-yes
    
    The command "sudo apt-get -o Dpkg::Options::=--force-confnew install -y docker-engine=1.10.3-0~trusty" failed. Retrying, 2 of 3.
    ```
    erikdw committed Aug 16, 2016
    Configuration menu
    Copy the full SHA
    bbaa442 View commit details
    Browse the repository at this point in the history