orthecreedence / drakma-async

An asynchronous version of drakma that runs off of cl-async
38 stars 5 forks source link

Additional-headers with latest quicklisp is broken? #18

Closed nightshade427 closed 10 years ago

nightshade427 commented 10 years ago

I think this is probably drakma related?

It seems that content type is broken?

(drakma-async:http-request "https://www.fqdn.com" :additional-headers '((:mine "test")))
GET / HTTP/1.1                                                                                                                                                                            
Host: www.fqdn.com                                                                                                                                                                      
User-Agent: Drakma/1.3.9 (SBCL 1.1.18; Linux; 3.14.4-x86_64-linode40; http://weitz.de/drakma/)                                                                                            
Accept: */*                                                                                                                                                                               
MINE: (test)  

Should be

GET / HTTP/1.1                                                                                                                                                                            
Host: www.fqdn.com                                                                                                                                                                      
User-Agent: Drakma/1.3.9 (SBCL 1.1.18; Linux; 3.14.4-x86_64-linode40; http://weitz.de/drakma/)                                                                                            
Accept: */*                                                                                                                                                                               
MINE: test
nightshade427 commented 10 years ago

nevermind, all good