* Changing generateBinding.sh check to check for thrift 0.12.0 and adding support for Variable Batch updates. * Adding update strategies change to changelog, changed docker-compose to point to aurora 0.22.0 snapshot. Added test coverage for update strategies.
11 lines
290 B
Bash
Executable file
11 lines
290 B
Bash
Executable file
#! /bin/bash
|
|
|
|
THRIFT_VER=0.12.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";
|