encrypt callback_vars in key/team metadata at rest (#27141)

Co-authored-by: Michael Riad Zaky <michaelr@Michaels-MacBook-Air.local>
Co-authored-by: Yuneng Jiang <yuneng@berri.ai>
This commit is contained in:
Michael-RZ-Berri
2026-05-23 12:15:44 -07:00
committed by GitHub
co-authored by Michael Riad Zaky Yuneng Jiang
parent 492891cad8
commit 3b2ce201d8
11 changed files with 456 additions and 9 deletions
+4 -3
View File
@@ -416,9 +416,10 @@ def test_dynamic_turn_off_message_logging(callback_vars):
)
assert callbacks is not None
assert (
callbacks.callback_vars["turn_off_message_logging"]
== callback_vars["turn_off_message_logging"]
# AddTeamCallback's validator stringifies callback_var values, so compare
# against the str() of the input rather than the input bool directly.
assert callbacks.callback_vars["turn_off_message_logging"] == str(
callback_vars["turn_off_message_logging"]
)