Skip to content

Commit

Permalink
use elixir 1.13
Browse files Browse the repository at this point in the history
  • Loading branch information
the-mikedavis committed May 11, 2022
1 parent ea84749 commit 1825569
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
elixir 1.10.3-otp-21
erlang 21.0
elixir 1.13.4-otp-24
erlang 24.3
2 changes: 1 addition & 1 deletion config/config.exs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
use Mix.Config
import Config

import_config "#{Mix.env()}.exs"
2 changes: 1 addition & 1 deletion config/dev.exs
Original file line number Diff line number Diff line change
@@ -1 +1 @@
use Mix.Config
import Config
2 changes: 1 addition & 1 deletion config/prod.exs
Original file line number Diff line number Diff line change
@@ -1 +1 @@
use Mix.Config
import Config
2 changes: 1 addition & 1 deletion config/test.exs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use Mix.Config
import Config

config :kelvin, ExtremeClient,
db_type: :node,
Expand Down
2 changes: 2 additions & 0 deletions lib/kelvin/in_order_subscription.ex
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,9 @@ defmodule Kelvin.InOrderSubscription do

defp dequeue(state) do
case :queue.out(state.buffer) do
# coveralls-ignore-start
{:empty, buffer} ->
# coveralls-ignore-stop
{:empty, %{state | buffer: buffer, buffer_size: 0}}

{value, buffer} ->
Expand Down

0 comments on commit 1825569

Please sign in to comment.