Merge pull request #7168 from sfc-gh-rjenkins/client_tmp_dir-unique-code
client_tmp_dir needs a unique code in bindings.
This commit is contained in:
commit
ea57e11e3c
|
@ -289,7 +289,7 @@ func (o NetworkOptions) SetDistributedClientTracer(param string) error {
|
|||
//
|
||||
// Parameter: Client directory for temporary files.
|
||||
func (o NetworkOptions) SetClientTmpDir(param string) error {
|
||||
return o.setOpt(90, []byte(param))
|
||||
return o.setOpt(91, []byte(param))
|
||||
}
|
||||
|
||||
// Set the size of the client location cache. Raising this value can boost performance in very large databases where clients access data in a near-random pattern. Defaults to 100000.
|
||||
|
|
|
@ -134,7 +134,7 @@ description is not currently required but encouraged.
|
|||
<Option name="distributed_client_tracer" code="90"
|
||||
paramType="String" paramDescription="Distributed tracer type. Choose from none, log_file, or network_lossy"
|
||||
description="Set a tracer to run on the client. Should be set to the same value as the tracer set on the server." />
|
||||
<Option name="client_tmp_dir" code="90"
|
||||
<Option name="client_tmp_dir" code="91"
|
||||
paramType="String" paramDescription="Client directory for temporary files. "
|
||||
description="Sets the directory for storing temporary files created by FDB client, such as temporary copies of client libraries. Defaults to /tmp" />
|
||||
<Option name="supported_client_versions" code="1000"
|
||||
|
|
Loading…
Reference in New Issue