Skip to content

Commit

Permalink
PISTON-668: handle system_limit for to_atom on long path tokens (2600…
Browse files Browse the repository at this point in the history
  • Loading branch information
danielfinke authored and k-anderson committed Jan 28, 2019
1 parent 8b5331f commit 35ad560
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/kazoo_stdlib/src/kz_module.erl
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ is_exported(Module, Function, Arity) ->
,kz_term:to_integer(Arity)
)
catch
'error':'badarg' -> 'false'
'error':'badarg' -> 'false';
'error':'system_limit' -> 'false'
end.

%%------------------------------------------------------------------------------
Expand Down

0 comments on commit 35ad560

Please sign in to comment.