Skip to content

Commit

Permalink
more conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
mnot committed Dec 9, 2023
1 parent 9160df4 commit e694f04
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions httplint/field/parsers/cache_control.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,35 @@

CONFLICTING_CC = {
"no-store": [
"immutable",
"max-age",
"s-maxage",
"must-revalidate",
"no-cache",
"private",
"proxy-revalidate",
"public",
"s-maxage",
"stale-if-error",
"stale-while-revalidate",
],
"no-cache": [
"immutable",
"max-age",
"must-revalidate",
"proxy-revalidate",
"s-maxage",
"stale-if-error",
"stale-while-revalidate",
"pre-check",
"post-check",
],
"must-revalidate": [
"immutable",
"stale-if-error",
"stale-while-revalidate",
"pre-check",
"post-check",
],
"no-cache": ["max-age", "s-maxage", "must-revalidate"],
}


Expand Down

0 comments on commit e694f04

Please sign in to comment.