Skip to content

Commit

Permalink
Merge pull request quantum-elixir#394 from somlor/master
Browse files Browse the repository at this point in the history
correct spelling of "Incorporating"
  • Loading branch information
c-rack authored Jan 18, 2019
2 parents 92ad935 + 54274b1 commit 5b4e523
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions lib/quantum/execution_broadcaster.ex
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ defmodule Quantum.ExecutionBroadcaster do
%State{time: last_execution_date} = state
) do
Logger.info(fn ->
"[#{inspect(Node.self())}][#{__MODULE__}] Incorperating state from other cluster node"
"[#{inspect(Node.self())}][#{__MODULE__}] Incorporating state from other cluster node"
end)

earlier_last_execution_date =
Expand All @@ -257,7 +257,7 @@ defmodule Quantum.ExecutionBroadcaster do
%State{time: last_execution_date} = state
) do
Logger.info(fn ->
"[#{inspect(Node.self())}][#{__MODULE__}] Incorperating conflict state from other cluster node"
"[#{inspect(Node.self())}][#{__MODULE__}] Incorporating conflict state from other cluster node"
end)

earlier_last_execution_date =
Expand Down
4 changes: 2 additions & 2 deletions lib/quantum/job_broadcaster.ex
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ defmodule Quantum.JobBroadcaster do
} = state
) do
Logger.info(fn ->
"[#{inspect(Node.self())}][#{__MODULE__}] Incorperating state from other cluster node"
"[#{inspect(Node.self())}][#{__MODULE__}] Incorporating state from other cluster node"
end)

new_jobs = Enum.into(handoff_jobs, jobs)
Expand All @@ -225,7 +225,7 @@ defmodule Quantum.JobBroadcaster do
} = state
) do
Logger.info(fn ->
"[#{inspect(Node.self())}][#{__MODULE__}] Incorperating conflict state from other cluster node"
"[#{inspect(Node.self())}][#{__MODULE__}] Incorporating conflict state from other cluster node"
end)

new_jobs = Enum.into(handoff_jobs, jobs)
Expand Down
4 changes: 2 additions & 2 deletions lib/quantum/task_registry.ex
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ defmodule Quantum.TaskRegistry do
%State{running_tasks: running_tasks} = state
) do
Logger.info(fn ->
"[#{inspect(Node.self())}][#{__MODULE__}] Incorperating state from other cluster node"
"[#{inspect(Node.self())}][#{__MODULE__}] Incorporating state from other cluster node"
end)

{:noreply, %{state | running_tasks: merge_states(running_tasks, handoff_tasks)}}
Expand All @@ -165,7 +165,7 @@ defmodule Quantum.TaskRegistry do
%State{running_tasks: running_tasks} = state
) do
Logger.info(fn ->
"[#{inspect(Node.self())}][#{__MODULE__}] Incorperating conflict state from other cluster node"
"[#{inspect(Node.self())}][#{__MODULE__}] Incorporating conflict state from other cluster node"
end)

{:noreply, %{state | running_tasks: merge_states(running_tasks, handoff_tasks)}}
Expand Down

0 comments on commit 5b4e523

Please sign in to comment.