Skip to content
Success

#20815 (Mar 6, 2026, 9:28:24 PM)

Started 21 hr ago
Took 8 min 1 sec on build4-deb12build-ansible

Started by upstream project gerrit-osmo-s1gw build number 620
originally caused by:

This run spent:

  • 6 min 59 sec waiting;
  • 8 min 1 sec build duration;
  • 15 min total from scheduled to completion.
Revision: e24096bbfe6f4e4303e39522aa3004e650d247c5
Repository: $GERRIT_REPO_URL
  • master
enb_registry: fix pattern match in handle_info 'DOWN' handler

PIDs maps pid() => enb_handle() (an integer), so maps:find/2 returns
{ok, SomeHandle}.  The old pattern {ok, Pid} tried to match an integer
against the already-bound pid() variable, which never succeeds.

This handler is only called on abnormal termination (process crash),
so the broken match caused the registry entry to never be cleaned up
in that case.  Fix by using a fresh {ok, Handle} binding and removing
the now-redundant follow-up maps:get/2 call.

Change-Id: I4cb044e8071c4ae2fc48c507f8733af6c617ec46
Vadim Yanitskiy at