Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/config/broker.yml.example
blob: 74ab715792951fb99dde6c0ff8b907cd4cd0af01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#
# broker.yml
#
# Simple yaml file for the env specific configuration of the broker connections.
# See the wiki for more information: http://code.google.com/p/activemessaging/wiki/Configuration
#
development:
    ############################
    # Stomp Adapter Properties #
    ############################
    adapter: stomp
    deadLetterQueue: '/queue/GitoriousDeadLetter'

    ## properties below are all defaults for this adapter
    # login: ""
    # passcode: ""
    # host: localhost
    # port: 61613
    # reliable: true
    # reconnectDelay: 5
    
    # NEW! enable stomp retry logic
    #  will resend errored out messages to be retried when on_error throws ActiveMessaging::AbortMessageException
    #
    # Max number of times to retry an aborted message, for 0, will not retry (default)
    # retryMax: 0
    #
    # If error still occurs after retryMax, send message to specified dead letter queue
    # deadLetterQueue: '/queue/activemessaging/deadletter'


    ###################################
    # Websphere MQ Adapter Properties #
    ###################################
    # adapter: wmq
    # q_mgr_name: ""
    # poll_interval: .1


    #################################
    # Amazon SQS Adapter Properties #
    #################################
    # adapter: asqs
    # access_key_id: XXXXXXXXXXXXXXXXXXXX
    # secret_access_key: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    ## properties below are all defaults for this adapter
    # host: queue.amazonaws.com
    # port: 80
    # reliable: true
    # reconnectDelay: 5
    # aws_version: 2006-04-01 
    # content_type: text/plain
    # poll_interval: 1
    # cache_queue_list: true


    ########################################
    # ReliableMessaging Adapter Properties #
    ########################################
    # adapter: reliable_msg

    ## properties below are all defaults for this adapter
    # poll_interval: 1
    # reliable: true    

test:
    adapter: test
    reliable: false

production:
    adapter: stomp