Merge pull request #11009 from zhongwencool/persistent_session_store-default-value

chore: correct persistent_session_store's default value type to boolean
This commit is contained in:
zhongwencool 2023-06-11 17:26:58 +08:00 committed by GitHub
commit c8cf8d1def
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -335,11 +335,11 @@ fields("persistent_session_store") ->
default => #{ default => #{
<<"type">> => <<"builtin">>, <<"type">> => <<"builtin">>,
<<"session">> => <<"session">> =>
#{<<"ram_cache">> => <<"true">>}, #{<<"ram_cache">> => true},
<<"session_messages">> => <<"session_messages">> =>
#{<<"ram_cache">> => <<"true">>}, #{<<"ram_cache">> => true},
<<"messages">> => <<"messages">> =>
#{<<"ram_cache">> => <<"false">>} #{<<"ram_cache">> => false}
}, },
desc => ?DESC(persistent_session_store_backend) desc => ?DESC(persistent_session_store_backend)
} }