You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
set_shared_data(key, None, None) can be used to delete the key, but knowing this is a low-level ABI detail and it shouldn't be leaked to the SDK, so I've added remove_shared_data() (#307).
Note that some hosts will remove the key (e.g. NGINX), while others will only remove the key's value (e.g. Envoy).
Activity
PiotrSikora commentedon Mar 15, 2025
set_shared_data(key, None, None)
can be used to delete the key, but knowing this is a low-level ABI detail and it shouldn't be leaked to the SDK, so I've addedremove_shared_data()
(#307).Note that some hosts will remove the key (e.g. NGINX), while others will only remove the key's value (e.g. Envoy).
leandrocurioso commentedon Apr 29, 2025
Thanks!