keith-turner opened a new issue #1695: URL: https://github.com/apache/accumulo/issues/1695
While testing 1.10 RC2 the continuous verification script failed to start w/ an error message about bad options. Working w/ @karthick-rn we debugged the issue and determined that it may be related to an update in jcommander. We added set -x to the script and saw the following line was passing `''` for `$SCAN_OPT` and `$AUTH_OPT`. https://github.com/apache/accumulo/blob/cfb33e1dcad4ab7d6e07d0b65e20ef9d4d8cf7d5/test/system/continuous/run-verify.sh#L42 After removing `"$SCAN_OPT"` and `"$AUTH_OPT"` from the line above verify started running. My suspicion is that the new version of jcommander does not like empty options where the older version ignored them, however I am not certain about this. Another possibility is that Hadoop tool runner used to drop empty options and now it does not. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
