From 20538e0a1f4cb2f028b99b7a4ae1ff1900101230 Mon Sep 17 00:00:00 2001 From: Adam Rutkowski Date: Tue, 1 Oct 2024 10:37:32 +0200 Subject: [PATCH] Update con_cache --- mix.exs | 2 +- mix.lock | 2 +- test/test_helper.exs | 11 +---------- 3 files changed, 3 insertions(+), 12 deletions(-) diff --git a/mix.exs b/mix.exs index 54c0f3467cf2..ee9adbf52447 100644 --- a/mix.exs +++ b/mix.exs @@ -142,7 +142,7 @@ defmodule Plausible.MixProject do {:ex_aws_s3, "~> 2.5"}, {:sweet_xml, "~> 0.7.4"}, {:zstream, "~> 0.6.4"}, - {:con_cache, "~> 1.1.0"}, + {:con_cache, "~> 1.1.1"}, {:req, "~> 0.5.0"}, {:happy_tcp, github: "ruslandoga/happy_tcp", only: [:ce, :ce_dev, :ce_test]}, {:ex_json_schema, "~> 0.10.2"}, diff --git a/mix.lock b/mix.lock index 597fc014849a..bc915b942b49 100644 --- a/mix.lock +++ b/mix.lock @@ -18,7 +18,7 @@ "combination": {:hex, :combination, "0.0.3", "746aedca63d833293ec6e835aa1f34974868829b1486b1e1cb0685f0b2ae1f41", [:mix], [], "hexpm", "72b099f463df42ef7dc6371d250c7070b57b6c5902853f69deb894f79eda18ca"}, "combine": {:hex, :combine, "0.10.0", "eff8224eeb56498a2af13011d142c5e7997a80c8f5b97c499f84c841032e429f", [:mix], [], "hexpm", "1b1dbc1790073076580d0d1d64e42eae2366583e7aecd455d1215b0d16f2451b"}, "comeonin": {:hex, :comeonin, "5.4.0", "246a56ca3f41d404380fc6465650ddaa532c7f98be4bda1b4656b3a37cc13abe", [:mix], [], "hexpm", "796393a9e50d01999d56b7b8420ab0481a7538d0caf80919da493b4a6e51faf1"}, - "con_cache": {:hex, :con_cache, "1.1.0", "45c7c6cd6dc216e47636232e8c683734b7fe293221fccd9454fa1757bc685044", [:mix], [{:telemetry, "~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "8655f2ae13a1e56c8aef304d250814c7ed929c12810f126fc423ecc8e871593b"}, + "con_cache": {:hex, :con_cache, "1.1.1", "9f47a68dfef5ac3bbff8ce2c499869dbc5ba889dadde6ac4aff8eb78ddaf6d82", [:mix], [{:telemetry, "~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "1def4d1bec296564c75b5bbc60a19f2b5649d81bfa345a2febcc6ae380e8ae15"}, "cors_plug": {:hex, :cors_plug, "3.0.3", "7c3ac52b39624bc616db2e937c282f3f623f25f8d550068b6710e58d04a0e330", [:mix], [{:plug, "~> 1.13", [hex: :plug, repo: "hexpm", optional: false]}], "hexpm", "3f2d759e8c272ed3835fab2ef11b46bddab8c1ab9528167bd463b6452edf830d"}, "cowboy": {:hex, :cowboy, "2.12.0", "f276d521a1ff88b2b9b4c54d0e753da6c66dd7be6c9fca3d9418b561828a3731", [:make, :rebar3], [{:cowlib, "2.13.0", [hex: :cowlib, repo: "hexpm", optional: false]}, {:ranch, "1.8.0", [hex: :ranch, repo: "hexpm", optional: false]}], "hexpm", "8a7abe6d183372ceb21caa2709bec928ab2b72e18a3911aa1771639bef82651e"}, "cowboy_telemetry": {:hex, :cowboy_telemetry, "0.4.0", "f239f68b588efa7707abce16a84d0d2acf3a0f50571f8bb7f56a15865aae820c", [:rebar3], [{:cowboy, "~> 2.7", [hex: :cowboy, repo: "hexpm", optional: false]}, {:telemetry, "~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "7d98bac1ee4565d31b62d59f8823dfd8356a169e7fcbb83831b8a5397404c9de"}, diff --git a/test/test_helper.exs b/test/test_helper.exs index c9006141c2cf..3906208d9329 100644 --- a/test/test_helper.exs +++ b/test/test_helper.exs @@ -22,18 +22,9 @@ end default_exclude = [:slow, :minio, :migrations] -# warm up ConCache until https://github.com/sasa1977/con_cache/pull/79 +# avoid slowdowns contacting the code server https://github.com/sasa1977/con_cache/pull/79 :code.ensure_loaded(ConCache.Lock.Resource) -for i <- 1..(System.schedulers_online() * 2) do - Plausible.Cache.Adapter.with_lock( - :sessions, - {i, i + 1}, - 500, - fn -> :warmup end - ) -end - if Mix.env() == :ce_test do IO.puts("Test mode: Community Edition") ExUnit.configure(exclude: [:ee_only | default_exclude])