Skip to content

Tags: 2600hz/kazoo-configs-core

Tags

5.4.0

Toggle 5.4.0's commit message
updated .shipyard.yml to branch 5.4

5.1.2

Toggle 5.1.2's commit message
enable rockylinux support in circle-ci

5.2.1

Toggle 5.2.1's commit message
enable rockylinux support in circle-ci

5.3.2

Toggle 5.3.2's commit message
enable rockylinux support in circle-ci

5.3.1

Toggle 5.3.1's commit message
updated .shipyard.yml to branch 5.3

5.2.0

Toggle 5.2.0's commit message
updated .shipyard.yml to branch 5.2

5.1.1

Toggle 5.1.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update .shipyard.yml

5.1.0

Toggle 5.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update .shipyard.yml

5.0.5

Toggle 5.0.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update .shipyard.yml (#21)

5.0.4

Toggle 5.0.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
KZOO-108: Do not decide BEAM process based on core count (#18) (#20)

SMP does not only depend on the numbers of cores on the running system, but it
also depends on the flags passed to the Erlang VM when starting it so let us
just get the pids for both `beam` and `beam.smp` processes and let the code
filter/search (grep) for the desired VM as it is already doing.

Prior to this change kazoo-[applications, ecallmgr] executables were failing
when running on single core systems because it seems Erlang comes with SMP
enabled by default and we don't check how many cores does the system has when
starting our VMs so they are running with SMP enabled even on single core machines
and that will brake the aforementioned executables because they would try to find
pid for `beam` processes but again since they have SMP enabled they are `beam.smp`,
thus, they will not be found and they will just reply: `DESIRED_APP is not running`.