Skip to content

Commit 7055e82

Browse files
authored
Change http3 attribute check from enabled to enable (#363)
* Change http3 attribute check from enabled to enable * Update converge example to use http3 enable
1 parent 259e3c9 commit 7055e82

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

molecule/default/converge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,7 @@
599599
enable: false
600600
chunk_size: 8k
601601
http3:
602-
enabled: false
602+
enable: false
603603
hq: true
604604
quic:
605605
active_connection_id_limit: 10

templates/http/modules.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -355,8 +355,8 @@ http2_chunk_size {{ http2['chunk_size'] }};
355355

356356
{# NGINX HTTP v3 -- ngx_http_v3_module #}
357357
{% macro http3(http3) %}
358-
{% if http3['enabled'] is defined and http3['enabled'] is boolean %}
359-
http3 {{ http3['enabled'] | ternary('on', 'off') }};
358+
{% if http3['enable'] is defined and http3['enable'] is boolean %}
359+
http3 {{ http3['enable'] | ternary('on', 'off') }};
360360
{% endif %}
361361
{% if http3['hq'] is defined and http3['hq'] is boolean %}
362362
http3_hq {{ http3['hq'] | ternary('on', 'off') }};

0 commit comments

Comments
 (0)