File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -1175,6 +1175,10 @@ pub static MAX_BACKEND_PUBLIC_API_REQUEST_SIZE: LazyLock<usize> =
11751175pub static MAX_SEARCHLIGHT_RESPONSE_SIZE : LazyLock < usize > =
11761176 LazyLock :: new ( || env_config ( "MAX_SEARCHLIGHT_RESPONSE_SIZE" , 1 << 23 ) ) ; // 8 MiB
11771177
1178+ /// The maximum size for GRPC responses from searchlight.
1179+ pub static MAX_SEARCHLIGHT_REQUEST_SIZE : LazyLock < usize > =
1180+ LazyLock :: new ( || env_config ( "MAX_SEARCHLIGHT_REQUEST_SIZE" , 1 << 23 ) ) ; // 8 MiB
1181+
11781182/// Background database workers wake up periodically, check to see if something
11791183/// has changed, then either go back to sleep or do work. Most workers determine
11801184/// if something has changed at least in part by comparing the number of commits
You can’t perform that action at this time.
0 commit comments