~psivaa/snappy-proposed-selftest-agent/request-id-in-payload

« back to all changes in this revision

Viewing changes to snappy_proposed_selftest_agent/constants.py

  • Committer: Ubuntu CI Bot
  • Author(s): Paul Larson
  • Date: 2015-05-28 03:58:46 UTC
  • mfrom: (7.1.6 sandbox)
  • Revision ID: ubuntu_ci_bot-20150528035846-93r727ovh5oa6npb
Add example config file, and fill in more body information to send to the exchanges [r=Celso Providelo, Thomi Richards, Francis Ginther]

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
INPUT_EXCHANGE = "candidates.exchange.v1"
25
25
 
26
26
# The queue needs to be unique to selftest agents
27
 
INPUT_QUEUE = "core.selftest.candidates"
 
27
INPUT_QUEUE = "snappy-proposed.selftest.candidates"
28
28
 
29
29
# The queue we send events on to request image build and test
30
30
IMAGE_BUILD_QUEUE = "snappy-proposed-migration.package.v1"
31
31
 
32
32
# We need to notify the results exchange that the test is in progress
33
33
RESULTS_EXCHANGE = "results.exchange.v1"
34
 
RESULTS_QUEUE = "core.selftest.results"
 
34
RESULTS_QUEUE = "snappy-proposed.selftest.results"
35
35
 
36
36
# The queue we put fatally error'd payloads into:
37
 
DEAD_LETTER_QUEUE = "core.deadletters.v1"
 
37
DEAD_LETTER_QUEUE = "snappy-proposed.deadletters.v1"
38
38
 
39
 
SOLUTION_NAME = "snappy-proposed-image-testing"
 
39
SOLUTION_NAME = "snappy-proposed"
40
40
 
41
41
SERVICE_NAME = "snappy-proposed-selftest-agent"
42
42
 
47
47
    'service': SERVICE_NAME,
48
48
    'hostname': HOSTNAME,
49
49
}
 
50
 
 
51
TEST_NAME = 'snappy-selftest'
 
52
TEST_BRANCH = 'lp:snappy/selftest'
 
53
CHANNEL = 'ubuntu-core/rolling/edge'
 
54
DEVICE = 'amd64_generic'