diff --git a/CHANGES b/CHANGES index e32eda2b84..eb34c92953 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,7 @@ +7.2.0-dev.636 | 2025-04-25 06:40:46 -0700 + + * Minor changes to storage framework script docs (Tim Wojtulewicz, Corelight) + 7.2.0-dev.634 | 2025-04-25 08:40:29 -0400 * Bump Spicy (Evan Typanski, Corelight) diff --git a/VERSION b/VERSION index f1ae0a8770..010472b8d2 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -7.2.0-dev.634 +7.2.0-dev.636 diff --git a/scripts/base/init-bare.zeek b/scripts/base/init-bare.zeek index 98b16e103e..eaeb9f70ca 100644 --- a/scripts/base/init-bare.zeek +++ b/scripts/base/init-bare.zeek @@ -6235,7 +6235,7 @@ export { TIMEOUT, ## Connection to backed was lost unexpectedly. CONNECTION_LOST, - ## Generic operation failed. + ## Generic operation failure. OPERATION_FAILED, ## Key requested was not found in backend. KEY_NOT_FOUND, @@ -6258,10 +6258,12 @@ export { ## One of a set of backend-redefinable return codes. code: ReturnCode; ## An optional error string. This should be set when the - ## ``code`` field is not set ``SUCCESS``. + ## ``code`` field is not set to ``SUCCESS``. error_str: string &optional; - ## An optional value returned by ``get`` operations when a match - ## was found the key requested. + ## An optional value for operations that can return data. ``get`` + ## operations uses this to return the value when a match was found + ## for the key requested. ``open_backend`` uses this to return the + ## backend handle on successful connections. value: any &optional; }; } diff --git a/scripts/policy/frameworks/storage/backend/redis/main.zeek b/scripts/policy/frameworks/storage/backend/redis/main.zeek index 2f037fb769..6a7d3f8b6d 100644 --- a/scripts/policy/frameworks/storage/backend/redis/main.zeek +++ b/scripts/policy/frameworks/storage/backend/redis/main.zeek @@ -18,9 +18,9 @@ export { # ``server_host`` field must be unset. server_unix_socket: string &optional; - # Prefix used in key values stored to differentiate varying types of data - # on the same server. Defaults to an empty string, but preferably should - # be set to a unique value per Redis backend opened. + # Prefix used in keys stored to differentiate varying types of data on the + # same server. Defaults to an empty string, but preferably should be set + # to a unique value per Redis backend opened. key_prefix: string &default=""; }; }