~andrewjbeach/juju-ci-tools/get-juju-dict

« back to all changes in this revision

Viewing changes to assess_log_forward.py

  • Committer: Curtis Hovey
  • Date: 2016-09-12 23:12:57 UTC
  • mto: This revision was merged to the branch mainline in revision 1589.
  • Revision ID: curtis@canonical.com-20160912231257-y06qqzdnjejnt5n2
Remove set-/set- from config command.

Show diffs side-by-side

added added

removed removed

Lines of Context:
180
180
    app_name = 'rsyslog'
181
181
    client.deploy('rsyslog', (app_name))
182
182
    client.wait_for_started()
183
 
    client.juju('set-config', (app_name, 'protocol="tcp"'))
 
183
    client.set_config(app_name, {'protocol': 'tcp'})
184
184
    client.juju('expose', app_name)
185
185
 
186
186
    return setup_tls_rsyslog(client, app_name)