Ignore:
Timestamp:
02/06/07 03:43:57 (18 years ago)
Author:
psmith
Message:

Changes for server close

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified branches/home/psmith/restructure/src/protocol/yarpc/yarpc-state-machine.lisp

    r50 r74  
    103103
    104104(defun execute-call (call-string)
     105  (handler-case
    105106      (let* ((rpc-call-list (read-from-string call-string ))
    106107             (fn (member (symbol-function (first rpc-call-list)) *remote-fns* )))
     
    108109        (if fn
    109110            (apply (first rpc-call-list) (rest rpc-call-list))
    110             (error 'authorization-error))))
     111            (error 'authorization-error)))
     112    (reader-error (re) (format-log t "yarpc-state-machine:execute-call - reader error on call-string ~A ~%" re))))
    111113
    112114;;end move TODO
Note: See TracChangeset for help on using the changeset viewer.