* Upgrading to Thrift 0.13.1. This version is a fork of 0.13.0 with a patch on top of it to fix an issue where trying a realis call after the connection has been closed results in a panic. * Upgrading compose set up to Mesos 1.6.2 and Aurora 0.22.0. * Adding support for using different update strategies. * Adding a monitor that is friendly with auto pause. * Adding tests for new update strategies.
11 lines
290 B
Bash
Executable file
11 lines
290 B
Bash
Executable file
#! /bin/bash
|
|
|
|
THRIFT_VER=0.13.0
|
|
|
|
if [[ $(thrift -version | grep -e $THRIFT_VER -c) -ne 1 ]]; then
|
|
echo "Warning: This wrapper has only been tested with version" $THRIFT_VER;
|
|
fi
|
|
|
|
echo "Generating bindings...";
|
|
thrift -o ./ -r -gen go:package=apache.aurora auroraAPI.thrift;
|
|
echo "Done";
|