Skip to content

Commit e9519d1

Browse files
Greg Leclercqggreg
authored andcommitted
Force Presto version to 0.202 to circumvent coordinator startup issue
1 parent f33f8fd commit e9519d1

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ python:
44
- "3.5"
55
- "3.6"
66
- "pypy-5.4"
7+
env:
8+
- PRESTO_VERSION=0.202
79
services:
810
- docker
911
install:

integration_tests/fixtures.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ def get_latest_release():
4646
raise Exception('not release found')
4747

4848

49-
PRESTO_VERSION = os.environ.get('PRESTO_VERSION') or get_latest_release()
49+
# Temporary fix because can't start 0.203
50+
# Use get_latest_release() instead
51+
PRESTO_VERSION = os.environ.get('PRESTO_VERSION') or '0.202'
5052
PRESTO_HOST = '127.0.0.1'
5153
PRESTO_PORT = 8080
5254

0 commit comments

Comments
 (0)