Set 30 seconds timeout for oauth2 code

This commit is contained in:
Jan Kaluza 2016-01-31 10:19:30 +01:00
parent 2ce9fd2e16
commit 008827e06d

View file

@ -396,7 +396,7 @@ void Server::serve_oauth2(struct mg_connection *conn, struct http_message *hm) {
std::string code = get_http_var(hm, "code");
std::string state = get_http_var(hm, "state");
std::string response = send_command(instance, "set_oauth2_code " + code + " " + state, 10);
std::string response = send_command(instance, "set_oauth2_code " + code + " " + state, 30);
std::cerr << "set_oauth2_code response: '" << response << "'\n";
if (response.find("Registered as ") == 0) {
std::vector<std::string> args;