Fix smoke test RC plugin installation

This commit fixes the smoke test RC plugin installation command to set
the es.plugins.staging system properly correctly.
This commit is contained in:
Jason Tedor 2016-05-24 19:48:53 -04:00
parent 7b98d5e0cb
commit e7243ed83d
1 changed files with 1 additions and 1 deletions

View File

@ -191,7 +191,7 @@ def smoke_test_release(release, files, expected_hash, plugins):
plugin_names = {}
for plugin in plugins:
print(' Install plugin [%s]' % (plugin))
run('%s; %s -Des.plugins.staging=true %s %s' % (java_exe(), es_plugin_path, 'install -b', plugin))
run('%s; export ES_JAVA_OPTS="-Des.plugins.staging=true"; %s %s %s' % (java_exe(), es_plugin_path, 'install -b', plugin))
plugin_names[plugin] = True
if 'x-pack' in plugin_names:
headers = { 'Authorization' : 'Basic %s' % base64.b64encode(b"es_admin:foobar").decode("UTF-8") }