Attention is currently required from: dexter.
fixeria has posted comments on this change by dexter. ( https://gerrit.osmocom.org/c/onomondo-eim/+/42876?usp=email )
Change subject: esipa_asn1_handler: fix transactionId handling ......................................................................
Patch Set 1: Code-Review+1
(1 comment)
File src/esipa_asn1_handler_utils.erl:
https://gerrit.osmocom.org/c/onomondo-eim/+/42876/comment/447a62a2_f967a3f5?... : PS1, Line 29: case maps:is_key(eimTransactionId, Map) of : true -> : mnesia_db:work_bind(Pid, maps:get(eimTransactionId, Map)); : _ -> : ok : Not critical, but you can avoid `maps:get/2` call:
```suggestion case maps:find(eimTransactionId, Map) of {ok, Value} -> mnesia_db:work_bind(Pid, Value); _ -> ok end ```