Skip to content

Commit

Permalink
request-query cache checks external-format
Browse files Browse the repository at this point in the history
v1.3.13 - spr38589 - request query caches the parse of the supplied form
and now remembers the external format of the parse so that if the external
format argument to request-query changes the parse will be redone.

Are there user visible changes in this commit?  yes/no

Is bootstrapping needed?   no

Are tests included for new features?  no tests for new features

Tests run:  t-aserve

Change-Id: Ia99c421f1bcafb46828c32779a587fcd3ad0879d
  • Loading branch information
John Foderaro committed Oct 14, 2011
1 parent 2384127 commit 72e9b85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.cl
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
#+ignore
(check-smp-consistency)

(defparameter *aserve-version* '(1 3 12))
(defparameter *aserve-version* '(1 3 13))

(eval-when (eval load)
(require :sock)
Expand Down Expand Up @@ -2545,7 +2545,7 @@ in get-multipart-sequence"))
;;
;;
(let ((alist (request-query-alist req))
(signature (cons post uri)))
(signature (list post uri external-format)))

(if* (not (eq alist :empty))
then (let ((given-sig (getf (request-reply-plist req)
Expand Down

0 comments on commit 72e9b85

Please sign in to comment.