Changeset - 008827e06d6d
[Not reviewed]
0 1 0
Jan Kaluza - 10 years ago 2016-01-31 10:19:30
jkaluza@redhat.com
Set 30 seconds timeout for oauth2 code
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
spectrum_manager/src/server.cpp
Show inline comments
 
@@ -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;
0 comments (0 inline, 0 general)