~billy-olsen/charms/trusty/mongodb/lp1513094

« back to all changes in this revision

Viewing changes to tests/01_deploy_single.py

  • Committer: Billy Olsen
  • Date: 2016-05-12 20:26:38 UTC
  • mfrom: (86.1.1 mongodb)
  • Revision ID: billy.olsen@canonical.com-20160512202638-jnd3d1ucckvxecwk
Move parameter logic from altering init conf file to the /etc/mongodb.conf
file. The mongdob service is already configured to read parameters from the
/etc/mongodb.conf file and moving the configuration options inside the
config file allows the systemd style service to start properly.

Also, as of MongoDB 2.6, the specification of master/slave flags on startup
is not allowed to be specified with the replicaset flags. This change allows
for the master/slave flag to be specified in the /etc/mongodb.conf file only
when the replica-set (peer) relation has not been established. Prior to
versions of MongoDB 2.6, specifying the master/slave flag on startup did not
cause MongoDB to error out and MongoDB ignored the flag.

Closes-Bug: #1513094

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
        amulet.raise_status(amulet.FAIL, msg="Failed to insert test data")
37
37
    # Can we delete from a shard using the Mongos hub?
38
38
    result = db.amulet.remove(insert_id)
39
 
    if result['err'] is not None:
 
39
    if 'err' in result and result['err'] is not None:
40
40
        amulet.raise_status(amulet.FAIL, msg="Failed to remove test data")
41
41
 
42
42