shane

Results 2 issues of shane

`{"errors": { "retweeted_status": [ "Invalid pk \"0\" - object does not exist." ], "replied_status": [ "Invalid pk \"0\" - object does not exist." ] } } ` After rest-framework==3.8.2 update...

**BUG REPORT** consumer.shutdown() is unreachable : ``` import time from rocketmq.client import PushConsumer, ConsumeStatus def callback(msg): print(msg.id, msg.body) return ConsumeStatus.CONSUME_SUCCESS consumer = PushConsumer('CID_XXX') consumer.set_name_server_address('127.0.0.1:9876') consumer.subscribe('YOUR-TOPIC', callback) consumer.start() while True: time.sleep(3600)...