We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 977c4a5 commit b8387f5Copy full SHA for b8387f5
beaker/util.py
@@ -303,8 +303,8 @@ def coerce_session_params(params):
303
('id', (str,), "Session id must be a string."),
304
('key', (str,), "Session key must be a string."),
305
('secret', (str, NoneType), "Session secret must be a string."),
306
- ('validate_key', (str, NoneType), "Session encrypt_key must be a string."),
307
- ('encrypt_key', (str, NoneType), "Session validate_key must be a string."),
+ ('validate_key', (str, NoneType), "Session validate_key must be a string."),
+ ('encrypt_key', (str, NoneType), "Session encrypt_key must be a string."),
308
('encrypt_nonce_bits', (int, NoneType), "Session encrypt_nonce_bits must be a number"),
309
('secure', (bool, NoneType), "Session secure must be a boolean."),
310
('httponly', (bool, NoneType), "Session httponly must be a boolean."),
0 commit comments