I hereby claim:
- I am ralphm on github.
- I am ralphm (https://keybase.io/ralphm) on keybase.
- I have a public key whose fingerprint is D5BF 034A D323 56B5 FCB1 A476 D91A D42A 4AB7 1678
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| 2015-05-29 17:47:05 | |
| Full thread dump OpenJDK 64-Bit Server VM (24.79-b02 mixed mode): | |
| "ConsumerFetcherThread-logstash-reputation4_logs16.example.com-1432895708747-3a1151d3-0-3" prio=10 tid=0x00007fa56c008800 nid=0x9522 waiting on condition [0x00007fa53faec000] | |
| java.lang.Thread.State: WAITING (parking) | |
| at sun.misc.Unsafe.park(Native Method) | |
| - parking to wait for <0x00000000e2807c10> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject) | |
| at java.util.concurrent.locks.LockSupport.park(LockSupport.java:186) | |
| at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2043) | |
| at java.util.concurrent.LinkedBlockingQueue.put(LinkedBlockingQueue.java:349) |
| from twisted.internet import defer, reactor | |
| from twisted.python import log | |
| from twisted.trial.unittest import TestCase | |
| def foo(timeout): | |
| """ | |
| Actual code returning deferred than cancels its DelayedCalls. | |
| """ | |
| def canceller(d): | |
| dc.cancel() |
| from twisted.internet import defer, reactor | |
| from twisted.python import log | |
| from twisted.trial.unittest import TestCase | |
| class Tests(TestCase): | |
| timeout = 5 | |
| def tearDown(self): | |
| log.msg("hi") |
| { | |
| "template": "udplog-*", | |
| "settings": { | |
| "index.refresh_interval" : "5s", | |
| "number_of_shards": 5, | |
| "analysis" : { | |
| "filter": { | |
| "compound_word": { | |
| "type": "word_delimiter", | |
| "preserve_original": true |
| { | |
| "bool": { | |
| "must": [ | |
| { | |
| "bool": { | |
| "should": [ | |
| { | |
| "term": { | |
| "event": "delivered" | |
| } |
| """ | |
| Web comment bot that sends messages over XMPP. | |
| Run this with: twistd -ny web_comment.tac | |
| """ | |
| from twisted.application import service, strports | |
| from twisted.words.protocols.jabber.jid import JID | |
| from twisted.web import http, server, resource | |
| from wokkel import client, xmppim |