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
In daq_control::handle_run_command_request(), the minimum size of the RKS is currently 2, when it should be 3.
daq_control::handle_run_command_request()
Lines 802ff
if( a_request->parsed_rks().size() < 2 ) { return a_reply_pkg.send_reply( dripline::retcode_t::message_error_invalid_key, "RKS is improperly formatted: [queue].run-command.[stream].[node].[command]" ); }
But, as is noted on line 804, the desired RK is: [queue].run-command.[stream].[node].[command], so it requires at least 3 arguments.
[queue].run-command.[stream].[node].[command]
Additional thing to fix: the returned error message contains a mistake: the name of the command is run-daq-cmd, not run-command.
run-daq-cmd
run-command
The text was updated successfully, but these errors were encountered:
nsoblath
No branches or pull requests
In
daq_control::handle_run_command_request()
, the minimum size of the RKS is currently 2, when it should be 3.Lines 802ff
But, as is noted on line 804, the desired RK is:
[queue].run-command.[stream].[node].[command]
, so it requires at least 3 arguments.Additional thing to fix: the returned error message contains a mistake: the name of the command is
run-daq-cmd
, notrun-command
.The text was updated successfully, but these errors were encountered: