Reid Draper

Results 21 issues of Reid Draper

Certainly possible this is an issue with my environment, but I'm getting errors with Kibit parsing `0N`. [My project](https://github.com/reiddraper/knockbox) uses Clojure 1.3.0. Here's the error: ``` ➜ ~knockbox git:(master) lein...

bug
enhancement

Resource functions like `serviceAvailable`, `allowMissingPost`, and `forbidden` (there are more) should be updated to return specific types like `data ServiceAvailable = Available | Unavailable`, so that users don't have to...

enhancement
help wanted

enhancement
help wanted

I have a project who's layout looks like: ``` ├── core.clj ├── registers.clj ├── resolvable.clj ├── sets │   ├── lww.clj │   ├── or.clj │   └── two_phase.clj └── sets.clj ``` When...

When observing a running system, it would be nice if poolboy provided statistics on the usage of the pool. Has the pool ever been empty? How long are processes checked...

enhancement

It would be nice to be able to change the `size` and `max_overflow` parameters at runtime. This would be useful for situations where you have long-running processes that it would...

enhancement

When a resource indicates a response code without reading the body (ex. malformed request returns true), Webmachine will send a response without ever reading the body. According to [RFC #2616](http://www.w3.org/Protocols/rfc2616/rfc2616-sec8.html#sec8.2.3):...

I've run into a couple issues with the `Content-MD5` checking in Webmachine. This issue is to discuss the steps for fixing, as there are some subtleties. 1. The current code...

Bug