Skip to content

Commit

Permalink
Merge pull request #63 from thalesmg/fix-ensure-replayq-started
Browse files Browse the repository at this point in the history
fix: ensure replayq app is started
  • Loading branch information
thalesmg authored Oct 18, 2024
2 parents 4b75f6b + fd84420 commit 755b0e1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '3'
services:
erlang:
container_name: erlang
image: erlang:24.3.4.2
image: erlang:26.2.5.2
volumes:
- ./:/pulsar_client_erl
working_dir: /pulsar_client_erl
Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ defmodule PulsarClientErl.MixProject do
{:crc32cer, github: "emqx/crc32cer", tag: "0.1.9"},
{:murmerl3, github: "emqx/murmerl3", tag: "0.1.0-emqx.1"},
{:snappyer, github: "emqx/snappyer", tag: "1.2.5"},
{:replayq, github: "emqx/replayq", tag: "0.3.5"},
{:snabbkaffe, github: "kafka4beam/snabbkaffe", tag: "1.0.4"},
{:replayq, github: "emqx/replayq", tag: "0.3.9"},
{:snabbkaffe, github: "kafka4beam/snabbkaffe", tag: "1.0.10"},
{:redbug, "~> 2.0", only: [:test, :dev]}
]
end
Expand Down
4 changes: 2 additions & 2 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
{crc32cer, {git, "https://github.com/emqx/crc32cer", {tag, "0.1.9"}}},
{murmerl3, {git, "https://github.com/emqx/murmerl3", {tag, "0.1.0-emqx.1"}}},
{snappyer, {git, "https://github.com/emqx/snappyer", {tag, "1.2.5"}}},
{replayq, {git, "https://github.com/emqx/replayq", {tag, "0.3.5"}}},
{snabbkaffe, {git, "https://github.com/kafka4beam/snabbkaffe.git", {tag, "1.0.4"}}}
{replayq, {git, "https://github.com/emqx/replayq", {tag, "0.3.9"}}},
{snabbkaffe, {git, "https://github.com/kafka4beam/snabbkaffe.git", {tag, "1.0.10"}}}
]}.

{edoc_opts, [{preprocess, true}]}.
Expand Down
2 changes: 1 addition & 1 deletion src/pulsar.app.src
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
{vsn,"git"},
{modules,[]},
{registered,[pulsar_sup]},
{applications,[kernel,stdlib,crc32cer,murmerl3,snappyer]},
{applications,[kernel,stdlib,crc32cer,murmerl3,snappyer,replayq]},
{mod,{pulsar_app,[]}}]}.

0 comments on commit 755b0e1

Please sign in to comment.