Problem: older backends are no longer supported

Solution: when running the command `bigchaindb configure`, configure for
`localmongodb` only.
This commit is contained in:
vrde 2018-02-14 10:20:56 +01:00 committed by Sylvain Bellemare
parent 161ccdda5d
commit bf2a1c6a60

View File

@ -271,7 +271,10 @@ def create_parser():
help='Prepare the config file '
'and create the node keypair')
config_parser.add_argument('backend',
choices=['rethinkdb', 'mongodb', 'localmongodb'],
choices=['localmongodb'],
default='localmongodb',
const='localmongodb',
nargs='?',
help='The backend to use. It can be either '
'rethinkdb or mongodb.')