Skip to content

Commit

Permalink
Revert "Decrease the RPC message timeout from 30 seconds to 10"
Browse files Browse the repository at this point in the history
This reverts commit 1b259a8. If you
call a function from Flash that ends up opening an alert, the call
blocks until the user closes the alert, and the call eventually times
out. A 30 second timeout isn't much better, but is harder to trigger
accidentally, whereas it's not difficult to trigger a 10 second timeout
on accident.

See bug #24.
  • Loading branch information
davidben committed Apr 23, 2011
1 parent 189a524 commit 857234e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rpc.c
Expand Up @@ -68,7 +68,7 @@

// Define the maximum amount of time (in seconds) to wait for a message
#ifndef RPC_MESSAGE_TIMEOUT
#define RPC_MESSAGE_TIMEOUT 10
#define RPC_MESSAGE_TIMEOUT 30
#endif

// Define the maximum amount of time (in seconds) to wait for plugin connection
Expand Down

0 comments on commit 857234e

Please sign in to comment.