Skip to content

Commit

Permalink
Ring uses :request-method key, not :method (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
tonsky authored and martinklepsch committed Nov 4, 2016
1 parent 5e92277 commit 63aa064
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/raven_clj/interfaces.clj
Expand Up @@ -11,7 +11,7 @@
(if (not= 80 (:server-port req))
(str ":" (:server-port req)))
(:uri req))
:method (:method req)
:method (:request-method req)
:headers (get req :headers {})
:query_string (get req :query-string "")
:data (get req :params {})
Expand Down

0 comments on commit 63aa064

Please sign in to comment.