Skip to content

Commit

Permalink
Merge pull request #464 from kianmeng/fix-typos
Browse files Browse the repository at this point in the history
Fix typos
  • Loading branch information
akira authored Dec 20, 2021
2 parents 3adc52b + 7848e10 commit 0e6bc69
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ NOTE: Please read PR #458 for upgrade instructions.
- Add retried_at field for Sidekiq compatibility #450 by @ananthakumaran
- Add apis to support exq_ui #452 by @ananthakumaran
- Add documentation about mode: :enqueuer and Exq.Enqueuer.queue_in #456 by @dbernheisel
- Add api to immediatly enqeueue jobs from retry/scheduled queue #461 by @ananthakumaran
- Add api to immediately enqeueue jobs from retry/scheduled queue #461 by @ananthakumaran
- Add api to re-enqueue dead job #462 by @ananthakumaran

### Changed
Expand Down Expand Up @@ -51,7 +51,7 @@ NOTE: Please read PR #458 for upgrade instructions.
- use Task instead of spawn_link for starting workers #436 by @mitchellhenke

### Fixed
- re-enqueue unfinished jobs to the begining of queue on restart #424 by @ananthakumaran
- re-enqueue unfinished jobs to the beginning of queue on restart #424 by @ananthakumaran
- Fix for sentinel 0.11.0+ #428 by @ananthakumaran
- Fixes for generated HTML docs by #442 @kianmeng

Expand Down
4 changes: 2 additions & 2 deletions lib/exq/api.ex
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ defmodule Exq.Api do
end

@doc """
Re enqueue jobs from retry queue immediatly.
Re enqueue jobs from retry queue immediately.
Expected args:
* `pid` - Exq.Api process
Expand Down Expand Up @@ -478,7 +478,7 @@ defmodule Exq.Api do
end

@doc """
Enqueue jobs from scheduled queue immediatly.
Enqueue jobs from scheduled queue immediately.
Expected args:
* `pid` - Exq.Api process
Expand Down
2 changes: 1 addition & 1 deletion test/performance_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ defmodule PerformanceTest do
stop_process(sup)
end

test "peformance for flakey workers" do
test "performance for flakey workers" do
Process.register(self(), :tester)
max_timeout_ms = 2 * 1_000

Expand Down
4 changes: 2 additions & 2 deletions test/worker_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ defmodule WorkerTest do
# Go through Exit reasons: http://erlang.org/doc/reference_manual/errors.html#exit_reasons

test "execute invalid module perform" do
{:ok, worker} = start_worker({"NonExistant", "[]"})
{:ok, worker} = start_worker({"NonExistent", "[]"})
assert_terminate(worker, false)
end

Expand All @@ -253,7 +253,7 @@ defmodule WorkerTest do
assert_terminate(worker, false)
end

test "worker with arithmatic error (badarith) still sends stats" do
test "worker with arithmetic error (badarith) still sends stats" do
{:ok, worker} = start_worker({"WorkerTest.BadArithmaticWorker", "[]"})
assert_terminate(worker, false)
end
Expand Down

0 comments on commit 0e6bc69

Please sign in to comment.