Skip to content

Commit 1825569

Browse files
committed
use elixir 1.13
1 parent ea84749 commit 1825569

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

.tool-versions

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
elixir 1.10.3-otp-21
2-
erlang 21.0
1+
elixir 1.13.4-otp-24
2+
erlang 24.3

config/config.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
use Mix.Config
1+
import Config
22

33
import_config "#{Mix.env()}.exs"

config/dev.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
use Mix.Config
1+
import Config

config/prod.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
use Mix.Config
1+
import Config

config/test.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use Mix.Config
1+
import Config
22

33
config :kelvin, ExtremeClient,
44
db_type: :node,

lib/kelvin/in_order_subscription.ex

+2
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,9 @@ defmodule Kelvin.InOrderSubscription do
152152

153153
defp dequeue(state) do
154154
case :queue.out(state.buffer) do
155+
# coveralls-ignore-start
155156
{:empty, buffer} ->
157+
# coveralls-ignore-stop
156158
{:empty, %{state | buffer: buffer, buffer_size: 0}}
157159

158160
{value, buffer} ->

0 commit comments

Comments
 (0)