diff options
| author | Loïc Hoguin <[email protected]> | 2025-02-17 12:57:00 +0100 |
|---|---|---|
| committer | Loïc Hoguin <[email protected]> | 2025-02-17 12:57:00 +0100 |
| commit | 9430bf99ea2cc9c2c3ee06321c77433abb521833 (patch) | |
| tree | 9e3ac03316f0d2b609ed0413af3a47d84d94a44d | |
| parent | 65a77a8f4888ad9266906f351c92477b4c697b18 (diff) | |
| download | cowboy-9430bf99ea2cc9c2c3ee06321c77433abb521833.tar.gz cowboy-9430bf99ea2cc9c2c3ee06321c77433abb521833.tar.bz2 cowboy-9430bf99ea2cc9c2c3ee06321c77433abb521833.zip | |
Use explicit Ranch and Cowlib versions
| -rw-r--r-- | Makefile | 4 | ||||
| -rw-r--r-- | rebar.config | 2 | ||||
| -rw-r--r-- | test/http_perf_SUITE.erl | 1 |
3 files changed, 3 insertions, 4 deletions
@@ -16,8 +16,8 @@ CT_OPTS += -ct_hooks cowboy_ct_hook [] # -boot start_sasl LOCAL_DEPS = crypto DEPS = cowlib ranch -dep_cowlib = git https://github.com/ninenines/cowlib master -dep_ranch = git https://github.com/ninenines/ranch 1.8.x +dep_cowlib = git https://github.com/ninenines/cowlib 2.14.0 +dep_ranch = git https://github.com/ninenines/ranch 1.8.1 ifeq ($(COWBOY_QUICER),1) DEPS += quicer diff --git a/rebar.config b/rebar.config index dc2e25d..022127b 100644 --- a/rebar.config +++ b/rebar.config @@ -1,4 +1,4 @@ {deps, [ -{cowlib,".*",{git,"https://github.com/ninenines/cowlib","master"}},{ranch,".*",{git,"https://github.com/ninenines/ranch","1.8.x"}} +{cowlib,".*",{git,"https://github.com/ninenines/cowlib",{tag,"2.14.0"}}},{ranch,".*",{git,"https://github.com/ninenines/ranch",{tag,"1.8.1"}}} ]}. {erl_opts, [debug_info,warn_export_vars,warn_shadow_vars,warn_obsolete_guard,warn_missing_spec,warn_untyped_record]}. diff --git a/test/http_perf_SUITE.erl b/test/http_perf_SUITE.erl index 38a18a4..7440f67 100644 --- a/test/http_perf_SUITE.erl +++ b/test/http_perf_SUITE.erl @@ -52,7 +52,6 @@ init_per_group(Name, Config) -> max_received_frame_rate => {10_000_000, 1}, stream_window_data_threshold => 1024, stream_window_margin_size => 64*1024 - })]. end_per_group(Name, _) -> |
