File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -2014,6 +2014,11 @@ defmodule ExICE.Priv.ICEAgent do
2014
2014
valid?: true
2015
2015
}
2016
2016
2017
+ checklist_local_cand = Map . fetch! ( ice_agent . local_cands , checklist_pair . local_cand_id )
2018
+ checklist_local_cand = put_in ( checklist_local_cand . base . closed? , true )
2019
+
2020
+ ice_agent = put_in ( ice_agent . local_cands [ checklist_local_cand . base . id ] , checklist_local_cand )
2021
+
2017
2022
checklist =
2018
2023
ice_agent . checklist
2019
2024
|> Map . replace! ( conn_check_pair . id , conn_check_pair )
@@ -2617,10 +2622,14 @@ defmodule ExICE.Priv.ICEAgent do
2617
2622
sel_local_cand = Map . fetch! ( ice_agent . local_cands , selected_pair . local_cand_id )
2618
2623
2619
2624
if succ_local_cand . base . socket != sel_local_cand . base . socket do
2620
- raise """
2625
+ # raise """
2626
+ # Selected local candidate's socket is different than succeeded local candidate's socket. \
2627
+ # This should never happen as we check against symmetric response.\
2628
+ # """
2629
+ Logger . error ( """
2621
2630
Selected local candidate's socket is different than succeeded local candidate's socket. \
2622
2631
This should never happen as we check against symmetric response.\
2623
- """
2632
+ """ )
2624
2633
end
2625
2634
2626
2635
ice_agent =
You can’t perform that action at this time.
0 commit comments