Hey Nick,
I'd need to see either a server trace of what came in or a wireshark to tell you what you're doing - to get a server trace, pass in a bunyan logger and set the level to trace:
var server = restify.createServer({
log: bunyan.createLogger({
stream:process.stdout,
level: 'trace',
name: 'foo',
serializers: restify.bunyan.serializers
})
});
then run it like: node foo.js | bunyan
(or just save the raw json output, and read it later with the bunyan CLI).
m