mirror of
https://github.com/edgurgel/httparrot
synced 2025-04-05 08:12:31 -04:00
bumping ConCache version
This commit is contained in:
parent
0d9c6f6854
commit
8f179399de
3 changed files with 8 additions and 9 deletions
|
@ -94,13 +94,12 @@ defmodule HTTParrot do
|
||||||
|
|
||||||
Supervisor.start_link(
|
Supervisor.start_link(
|
||||||
[
|
[
|
||||||
worker(ConCache, [
|
{ConCache,
|
||||||
[
|
[
|
||||||
ttl_check: :timer.minutes(5),
|
ttl_check_interval: :timer.minutes(5),
|
||||||
ttl: :timer.hours(12)
|
global_ttl: :timer.hours(12),
|
||||||
],
|
name: :requests_registry
|
||||||
[name: :requests_registry]
|
]}
|
||||||
])
|
|
||||||
],
|
],
|
||||||
strategy: :one_for_one
|
strategy: :one_for_one
|
||||||
)
|
)
|
||||||
|
|
2
mix.exs
2
mix.exs
|
@ -35,7 +35,7 @@ defmodule Httparrot.Mixfile do
|
||||||
[
|
[
|
||||||
{:cowboy, "~> 2.5.0"},
|
{:cowboy, "~> 2.5.0"},
|
||||||
{:exjsx, "~> 3.0 or ~> 4.0"},
|
{:exjsx, "~> 3.0 or ~> 4.0"},
|
||||||
{:con_cache, "~> 0.12.0"},
|
{:con_cache, "~> 0.13.0"},
|
||||||
{:ex_doc, "~> 0.14", only: :dev},
|
{:ex_doc, "~> 0.14", only: :dev},
|
||||||
{:meck, "~> 0.8.13", only: :test}
|
{:meck, "~> 0.8.13", only: :test}
|
||||||
]
|
]
|
||||||
|
|
2
mix.lock
2
mix.lock
|
@ -1,5 +1,5 @@
|
||||||
%{
|
%{
|
||||||
"con_cache": {:hex, :con_cache, "0.12.0", "2d961aec219aa5a914473873f348f5a6088292dc69d5192a9d25f8a1e13e9905", [:mix], [{:exactor, "~> 2.2.0", [hex: :exactor, repo: "hexpm", optional: false]}], "hexpm"},
|
"con_cache": {:hex, :con_cache, "0.13.1", "047e097ab2a8c6876e12d0c29e29a86d487b592df97b98e3e2abedad574e215d", [:mix], [], "hexpm"},
|
||||||
"cowboy": {:hex, :cowboy, "2.5.0", "4ef3ae066ee10fe01ea3272edc8f024347a0d3eb95f6fbb9aed556dacbfc1337", [:rebar3], [{:cowlib, "~> 2.6.0", [hex: :cowlib, repo: "hexpm", optional: false]}, {:ranch, "~> 1.6.2", [hex: :ranch, repo: "hexpm", optional: false]}], "hexpm"},
|
"cowboy": {:hex, :cowboy, "2.5.0", "4ef3ae066ee10fe01ea3272edc8f024347a0d3eb95f6fbb9aed556dacbfc1337", [:rebar3], [{:cowlib, "~> 2.6.0", [hex: :cowlib, repo: "hexpm", optional: false]}, {:ranch, "~> 1.6.2", [hex: :ranch, repo: "hexpm", optional: false]}], "hexpm"},
|
||||||
"cowlib": {:hex, :cowlib, "2.6.0", "8aa629f81a0fc189f261dc98a42243fa842625feea3c7ec56c48f4ccdb55490f", [:rebar3], [], "hexpm"},
|
"cowlib": {:hex, :cowlib, "2.6.0", "8aa629f81a0fc189f261dc98a42243fa842625feea3c7ec56c48f4ccdb55490f", [:rebar3], [], "hexpm"},
|
||||||
"earmark": {:hex, :earmark, "1.2.6", "b6da42b3831458d3ecc57314dff3051b080b9b2be88c2e5aa41cd642a5b044ed", [:mix], [], "hexpm"},
|
"earmark": {:hex, :earmark, "1.2.6", "b6da42b3831458d3ecc57314dff3051b080b9b2be88c2e5aa41cd642a5b044ed", [:mix], [], "hexpm"},
|
||||||
|
|
Loading…
Add table
Reference in a new issue