Skip to content

Commit

Permalink
Disable dev_setup installation of Neo4j
Browse files Browse the repository at this point in the history
Change-Id: I78b7c99a7ef0e27b4f7884ddaca2850ab9011027
  • Loading branch information
kushmerick committed May 31, 2012
1 parent f7f7354 commit fb08ff5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dev_setup/lib/job_manager.rb
Expand Up @@ -20,7 +20,7 @@ class JobManager
ACM = "acm"
ACMDB = "acmdb"

SERVICES = ["redis", "mysql", "mongodb", "neo4j", "rabbitmq", "memcached"]
SERVICES = ["redis", "mysql", "mongodb", "rabbitmq", "memcached"] # neo4j
SERVICES_NODE = SERVICES.map do |service|
"#{service}_node"
end
Expand All @@ -39,7 +39,7 @@ class JobManager
# List of the required properties for jobs
INSTALLED_JOB_PROPERTIES = {NATS => ["host"], CC => ["service_api_uri", "builtin_services"],
CCDB => ["host"]}
INSTALL_JOB_PROPERTIES = {CC => ["builtin_services"], MYSQL_NODE => ["index"], MONGODB_NODE => ["index"], REDIS_NODE => ["index"], NEO4J_NODE => ["index"], RABBITMQ_NODE => ["index"], MEMCACHED_NODE => ["index"]}
INSTALL_JOB_PROPERTIES = {CC => ["builtin_services"], MYSQL_NODE => ["index"], MONGODB_NODE => ["index"], REDIS_NODE => ["index"], RABBITMQ_NODE => ["index"], MEMCACHED_NODE => ["index"]} # NEO4J_NODE => ["index"]

# Dependency between JOBS and components that are consumed by "vcap_dev" when cf is started or
# stopped
Expand Down

0 comments on commit fb08ff5

Please sign in to comment.