On Mon, 2003-09-29 at 15:04, Andrew Piskorski wrote:
> Sometimes when using ns_httpsget, I get the transient error from Tcl's
> "read" command below.
I have never run into this problem myself but it looks like Jin Choi or
Eve Anderson once faced something like it, judging from this snippet of
code from the ACS 3.x spell-checker ... :
# read will occasionally error out with "interrupted system call",
# so retry a few times in the hopes that it will go away.
set try 0
set max_retry 10
while { [catch { set ispell_text [read -nonewline $ispell_proc] } errmsg]
&& $try < $max_retry } {
incr try
ns_log Notice "spellchecker had a problem: $errmsg"
}
I don't know if it is related, though.
--
AOLserver - http://www.aolserver.com/
To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]> with the
body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of
your email blank.