Merge "Adding PERSISTENCE_TYPES option NONE"

This commit is contained in:
Zuul 2021-03-30 03:34:40 +00:00 committed by Gerrit Code Review
commit fcd3c58527
2 changed files with 3 additions and 2 deletions

View File

@ -19,7 +19,7 @@ properties:
session_persistence: session_persistence:
# type of session persistence, valid values include: # type of session persistence, valid values include:
# SOURCE_IP, HTTP_COOKIE, APP_COOKIE # SOURCE_IP, HTTP_COOKIE, APP_COOKIE, NONE
type: SOURCE_IP type: SOURCE_IP
# Name of cookie if type set to APP_COOKIE # Name of cookie if type set to APP_COOKIE
cookie_name: whatever cookie_name: whatever

View File

@ -142,8 +142,9 @@ class LoadBalancingPolicy(base.Policy):
PERSISTENCE_TYPES = ( PERSISTENCE_TYPES = (
PERSIST_SOURCE_IP, PERSIST_HTTP_COOKIE, PERSIST_APP_COOKIE, PERSIST_SOURCE_IP, PERSIST_HTTP_COOKIE, PERSIST_APP_COOKIE,
PERSIST_NONE,
) = ( ) = (
'SOURCE_IP', 'HTTP_COOKIE', 'APP_COOKIE', 'SOURCE_IP', 'HTTP_COOKIE', 'APP_COOKIE', 'NONE',
) )
properties_schema = { properties_schema = {