Skip to content
This repository has been archived by the owner on Apr 9, 2021. It is now read-only.

Commit

Permalink
Merge upstream changes
Browse files Browse the repository at this point in the history
  • Loading branch information
lizadaly committed Feb 22, 2017
2 parents 5d71df3 + 8815f4c commit da41724
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions fabfile.py
Expand Up @@ -127,10 +127,6 @@
if not env.get('instance_type'):
env.instance_type = 't2.micro'

# Override the database instance or use the default
if not env.get('database_id'):
env.database_id = 'openledger-db-1'

# Which branch should we check out on the loader?
if not env.get('branch'):
env.branch = 'master'
Expand All @@ -152,7 +148,9 @@
log.addHandler(console)
log.setLevel(logging.DEBUG)

log.debug("Starting up with ami=%s, key=%s, db=%s", AMI, KEY_NAME, env.database_id)
log.debug("Starting up with ami=%s, key=%s, db=%s, es=%s", AMI, KEY_NAME,
os.environ.get('DJANGO_DATABASE_HOST'),
ELASTICSEARCH_URL)

class LoaderException(Exception):
pass
Expand Down

0 comments on commit da41724

Please sign in to comment.