This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ui] | |
| merge=internal:merge | |
| [pager] | |
| pager = less -R | |
| [extensions] | |
| mq = | |
| fetch = | |
| rebase = |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding: utf-8 -*- | |
| """Utilties for marking up RPC methods.""" | |
| import inspect | |
| import textwrap | |
| import functools | |
| import itertools | |
| from twisted.internet.defer import Deferred |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding: utf-8 -*- | |
| """Utilties for marking up RPC methods.""" | |
| import inspect | |
| import textwrap | |
| import functools | |
| import itertools | |
| from twisted.internet.defer import Deferred |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding: utf-8 -*- | |
| """Utilties for marking up RPC methods.""" | |
| import inspect | |
| import textwrap | |
| import functools | |
| import itertools | |
| from twisted.internet.defer import Deferred |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| root@qa-magri:~# /etc/init.d/puppet status | |
| * agent is not running | |
| root@qa-magri:~# /etc/init.d/puppet start | |
| * Starting puppet agent |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Django==1.4.2 | |
| Fabric==1.2.2 | |
| Markdown==2.1.1 | |
| PyYAML==3.10 | |
| South==0.7.3 | |
| Twisted==12.2.0 | |
| amqp==1.0.8 | |
| amqplib==1.0.2 | |
| anyjson==0.3.3 | |
| argparse==1.2.1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/modules/praekelt/files/checkPuppet b/modules/praekelt/files/checkPuppet | |
| index 3c0da8f..e2dea1a 100755 | |
| --- a/modules/praekelt/files/checkPuppet | |
| +++ b/modules/praekelt/files/checkPuppet | |
| @@ -2,7 +2,7 @@ | |
| PID=$(pgrep -nf "puppet") | |
| -if [ -n $PID ] | |
| +if [ -n "$PID" ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/go/apps/bulk_message/vumi_app.py b/go/apps/bulk_message/vumi_app.py | |
| index 3cf215e..e9996df 100644 | |
| --- a/go/apps/bulk_message/vumi_app.py | |
| +++ b/go/apps/bulk_message/vumi_app.py | |
| @@ -16,9 +16,9 @@ class BulkMessageApplication(GoApplicationWorker): | |
| """ | |
| SEND_TO_TAGS = frozenset(['default']) | |
| worker_name = 'bulk_message_application' | |
| - max_ack_window = 10000 | |
| - max_ack_wait = 10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/modules/vumigo/files/jsbox_application.yaml b/modules/vumigo/files/jsbox_application.yaml | |
| index 88384de..f74d80a 100644 | |
| --- a/modules/vumigo/files/jsbox_application.yaml | |
| +++ b/modules/vumigo/files/jsbox_application.yaml | |
| @@ -3,7 +3,7 @@ transport_name: jsbox_transport | |
| metrics_prefix: "go.accounts." | |
| env: | |
| - NODE_PATH: "/usr/lib/node_modules" | |
| + NODE_PATH: "/usr/lib/node_modules:/usr/local/lib/node_modules" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/vumi/blinkenlights/heartbeat/storage.py b/vumi/blinkenlights/heartbeat/storage.py | |
| index 84fa400..03eee6a 100644 | |
| --- a/vumi/blinkenlights/heartbeat/storage.py | |
| +++ b/vumi/blinkenlights/heartbeat/storage.py | |
| @@ -3,13 +3,15 @@ | |
| """ | |
| Storage Schema: | |
| - Systems (set): key = systems | |
| - Workers in system (set): key = system:$SYSTEM_ID:workers |