Skip to content

Commit

Permalink
Merge pull request #90 from zalando/release1.1
Browse files Browse the repository at this point in the history
Bump upstream versions
  • Loading branch information
feikesteenbergen committed Sep 7, 2016
2 parents 9cf02b0 + 007da8d commit 05613d1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions postgres-appliance/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ ENV PATH=$PATH:/usr/lib/postgresql/${PGVERSION}/bin
## 1 Install tools required to build
## 2 Build
## 3 Remove tools only required for build
ENV PATRONIVERSION=1.0
ENV WALE_VERSION=1.0.0a2
ENV PATRONIVERSION=1.1
ENV WALE_VERSION=1.0.0b1
RUN export DEBIAN_FRONTEND=noninteractive \
export BUILD_PACKAGES="postgresql-server-dev-${PGVERSION} python3-pip python3-dev build-essential pgxnclient" \
export PGXN_EXTENSIONS="quantile trimmed_aggregates" \
Expand Down
2 changes: 1 addition & 1 deletion postgres-appliance/configure_spilo.py
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ def main():
logging.basicConfig(format='%(asctime)s - bootstrapping - %(levelname)s - %(message)s', level=('DEBUG'
if debug else (args.get('loglevel') or 'INFO').upper()))

if float(os.environ.get('PATRONIVERSION')) < 1.0:
if os.environ.get('PATRONIVERSION') < '1.0':
raise Exception('Patroni version >= 1.0 is required')

provider = get_provider()
Expand Down

0 comments on commit 05613d1

Please sign in to comment.