JonS
JonS
PS not sure why the diffs are being so unhelpful...
> Just one issue I observed: I did frequent installs and deletes and sometimes the pod got stuck in the `Creating` phase. I did not have this issue on my...
I've got a similar issue with CBOR. It never calls the dumps function in my serializer.
This was my fix in slumber.Resource._try_to_serialize_response ``` if stype.key == 'cbor': return stype.loads(resp.content) if type(resp.content) == bytes: ``` swap cbor for msgpack and it should work I guess