Skip to content

Commit acc6bc5

Browse files
authored
Update the max number of headers for meta and tags each to 10 (#83)
1 parent 158990b commit acc6bc5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/utils.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ pub fn merge(value: Value, fields: HashMap<String, String>) -> Value {
5555
}
5656

5757
pub mod header_parsing {
58-
const MAX_HEADERS_ALLOWED: usize = 5;
58+
const MAX_HEADERS_ALLOWED: usize = 10;
5959
use actix_web::{HttpRequest, HttpResponse, ResponseError};
6060

6161
pub fn collect_labelled_headers(

0 commit comments

Comments
 (0)