We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@mrkraimer opened this issue on Oct 3, 2017:
Currently the ca provider for channelPut always does a put with callback. By default it should always issue a put without callback.
It does a put with callback if the client specifies a request option of the form: "record[block=true],..."
In pvAccessCPP the code that checks for this is
PVStringPtr pvString = pvRequest->getSubField("record._options.block"); if(pvString) { std::string val = pvString->get(); if(val.compare("true")==0) block = true; }
Note that this only applies to ca provider and then only to ChannelPut.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
@mrkraimer opened this issue on Oct 3, 2017:
Currently the ca provider for channelPut always does a put with callback.
By default it should always issue a put without callback.
It does a put with callback if the client specifies a request option of the form:
"record[block=true],..."
In pvAccessCPP the code that checks for this is
Note that this only applies to ca provider and then only to ChannelPut.
The text was updated successfully, but these errors were encountered: