Skip to content

Commit

Permalink
Merge pull request #268 from NehaKembalkarA10/STACK-883
Browse files Browse the repository at this point in the history
STACK-883 : Support for cookie_name for session persistence
  • Loading branch information
hthompson6 authored Mar 5, 2020
2 parents eb6853b + 45c0568 commit 6f96e22
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions acos_client/v30/slb/template/persistence.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,11 @@ def __init__(self, client):
self.pers_type = 'cookie'
super(CookiePersistence, self).__init__(client)

def get_params(self, name):
def get_params(self, name, cookie_name=None):
return {
"cookie": {
"name": name
"name": name,
"cookie-name": cookie_name
}
}

Expand Down

0 comments on commit 6f96e22

Please sign in to comment.