Bugs item #685869, was opened at 2003-02-13 05:51
Message generated for change (Settings changed) made by ianbicking
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=104866&aid=685869&group_id=4866

Category: WebKit
Group: None
>Status: Closed
>Resolution: Fixed
Priority: 5
Submitted By: Marcos Sánchez  Provencio (rapto)
Assigned to: Nobody/Anonymous (nobody)
Summary:  'NotEnoughDataError' is not defined in NewThreadedAppServer

Initial Comment:
Shutdown Called Thu Feb 13 12:35:41 2003
('127.0.0.1', 8086)
ThreadedAppServer: Shutting Down
   29  2003-02-13 12:35:41 Traceback (most recent call
last):
  File ".\WebKit\NewThreadedAppServer.py", line 271, in
threadloop
    handler.handleRequest()
  File ".\WebKit\NewThreadedAppServer.py", line 448, in
handleRequest
    dict = self.receiveDict()
  File ".\WebKit\NewThreadedAppServer.py", line 365, in
receiveDict
    raise NotEnoughDataError, 'received only %d of %d
bytes when receiving dictL
ength' % (len(chunk), intLength)
NameError: global name 'NotEnoughDataError' is not defined
 Stopping AutoReload Monitor

----------------------------------------------------------------------

Comment By: Stuart Donaldson (stuartd)
Date: 2003-02-13 10:34

Message:
Logged In: YES 
user_id=326269

The specific error is a missing definition for the exception 
NotEnoughDataError, however under normal conditions this 
should never occur, in which case you should be able to 
workaround the problem by defining an exception class for 
this. 

class NotEnoughDataError(Exception)
  pass

You could copy the definition from ThreadedAppServer

Is the problem repeatable with normal use?  If so, then the 
root problem would be some other issue causing not enough 
data to be transfered.

Is the problem repeatable with ThreadedAppServer?

FYI - NewThreadedAppServer will be replacing 
ThreadedAppServer in the near future in CVS, and there is 
also a bug "[ 669620 ] Bad Marshal Data error" which is 
related to the processing of data from the adapter.  


----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=104866&aid=685869&group_id=4866


-------------------------------------------------------
This SF.net email is sponsored by: VM Ware
With VMware you can run multiple operating systems on a single machine.
WITHOUT REBOOTING! Mix Linux / Windows / Novell virtual machines
at the same time. Free trial click here:http://www.vmware.com/wl/offer/358/0
_______________________________________________
Webware-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/webware-devel

Reply via email to