Make backend options a record, move actual options to be sub-records

This commit is contained in:
Tim Wojtulewicz 2025-02-06 14:30:10 -07:00
parent 64f3969434
commit a485b1d237
23 changed files with 71 additions and 73 deletions

View file

@ -34,4 +34,8 @@ export {
# traffic.
async_mode: bool &default=T;
};
redef record Storage::BackendOptions += {
redis: Options &optional;
};
}

View file

@ -28,4 +28,8 @@ export {
["temp_store"] = "memory"
);
};
redef record Storage::BackendOptions += {
sqlite: Options &optional;
};
}