Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: [Mysql-protocol] timeout problem

From: reblist:codeconscious at: 12-May-2004 10:49

I don't know anything about using mysql-protocol.r, but REBOL does have timeout settings. From the Core manual: .... you can set network timeout values for all of the schemes (in the default) or for specific schemes. For instance, to increase the timeout for all schemes, you can write: system/schemes/default/timeout: 0:05 This sets the network timeout for 5 minutes. If you want to increase the timeout just for SMTP, you would write: system/schemes/smtp/timeout: 0:10 Check your current settings you will probably find it is 30 (btw an integer). I'm not sure when the timeout setting takes effect - so consider changing the default timeout before you load mysql-protocol.r as a first attempt. Separately try: system/schemes/mysql/timeout: 60 HTH Brett ----- Original Message ----- From: "Hallvard Ystad" I looked through mysql-protocol.r for a 'timout parameter or something, but I didn't find anything of interest. Rebol's disarmed error seems to say the timout occurs in 'read. Has anyone else had this problem? What should I do?