Adding Spark to the list of default plugins

Spark is now present as a plugin with the default
installation of Sahara.

Change-Id: I94a26f721839386e7d04668a0054ba583cf1a698
Closes-Bug: #1375316
This commit is contained in:
Chad Roberts 2014-09-29 11:51:18 -04:00
parent 9f473790f7
commit 3225dbb4ed
3 changed files with 3 additions and 3 deletions

View File

@ -369,7 +369,7 @@
# List of plugins to be loaded. Sahara preserves the order of
# the list when returning it. (list value)
#plugins=vanilla,hdp
#plugins=vanilla,hdp,spark
#

View File

@ -95,7 +95,7 @@
# List of plugins to be loaded. Sahara preserves the order of
# the list when returning it. (list value)
#plugins=vanilla,hdp
#plugins=vanilla,hdp,spark
[database]

View File

@ -30,7 +30,7 @@ LOG = logging.getLogger(__name__)
opts = [
cfg.ListOpt('plugins',
default=['vanilla', 'hdp'],
default=['vanilla', 'hdp', 'spark'],
help='List of plugins to be loaded. Sahara preserves the '
'order of the list when returning it.'),
]