We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a6a760 commit 1dd5a53Copy full SHA for 1dd5a53
src/main.c
@@ -40,7 +40,7 @@ int main(int argc, char *argv[]){
40
printf("--port not valid\n");
41
return 1;
42
}
43
- int function_timeout = 500;
+ int function_timeout = 3000;
44
const char *function_timeout_flag = CArgvParse_get_flag(&args, FUNCTION_TIMEOUT_FLAGS, FLAGS_SIZE, 0);
45
if(function_timeout_flag){
46
function_timeout = atoi(function_timeout_flag);
@@ -49,7 +49,7 @@ int main(int argc, char *argv[]){
49
printf("--timeout not valid\n");
50
51
52
- int client_timeout = 500;
+ int client_timeout = 3000;
53
const char *client_timeout_flag = CArgvParse_get_flag(&args, CLIENT_TIMEOUT_FLAGS, FLAGS_SIZE, 1);
54
if(client_timeout_flag){
55
client_timeout = atoi(client_timeout_flag);
0 commit comments