Fixed call_token requests timing out
This commit is contained in:
parent
30cb6c5fa5
commit
a3612ba55c
2 changed files with 72 additions and 37 deletions
|
|
@ -178,11 +178,11 @@ pub enum CommunicationType {
|
|||
add_community,
|
||||
remove_community,
|
||||
get_communities,
|
||||
challenge,
|
||||
challenge_response,
|
||||
register,
|
||||
register_response,
|
||||
identification,
|
||||
challenge,
|
||||
challenge_response,
|
||||
identification_response,
|
||||
ping,
|
||||
pong,
|
||||
|
|
@ -230,11 +230,11 @@ impl CommunicationType {
|
|||
"addcommunity" => CommunicationType::add_community,
|
||||
"removecommunity" => CommunicationType::remove_community,
|
||||
"getcommunities" => CommunicationType::get_communities,
|
||||
"challenge" => CommunicationType::challenge,
|
||||
"challengeresponse" => CommunicationType::challenge_response,
|
||||
"register" => CommunicationType::register,
|
||||
"registerresponse" => CommunicationType::register_response,
|
||||
"identification" => CommunicationType::identification,
|
||||
"challenge" => CommunicationType::challenge,
|
||||
"challengeresponse" => CommunicationType::challenge_response,
|
||||
"identificationresponse" => CommunicationType::identification_response,
|
||||
"ping" => CommunicationType::ping,
|
||||
"pong" => CommunicationType::pong,
|
||||
|
|
|
|||
Loading…
Reference in a new issue