Michael Blow has submitted this change and it was merged. Change subject: Remove Extraneous Quotes in Start Sample Batchfile ......................................................................
Remove Extraneous Quotes in Start Sample Batchfile e.g. "--------------------------" "Mon 03/20/2017 19:31:01.81" "--------------------------" Change-Id: I24581eb36e193628b93cb5be52903beb206c603d Reviewed-on: https://asterix-gerrit.ics.uci.edu/1605 Sonar-Qube: Jenkins <[email protected]> Tested-by: Jenkins <[email protected]> BAD: Jenkins <[email protected]> Integration-Tests: Jenkins <[email protected]> Reviewed-by: Ian Maxon <[email protected]> --- M asterixdb/asterix-server/src/main/opt/local/bin/start-sample-cluster.bat 1 file changed, 3 insertions(+), 3 deletions(-) Approvals: Ian Maxon: Looks good to me, approved Jenkins: Verified; No violations found; No violations found; Verified diff --git a/asterixdb/asterix-server/src/main/opt/local/bin/start-sample-cluster.bat b/asterixdb/asterix-server/src/main/opt/local/bin/start-sample-cluster.bat index fce27a9..60f5cb5 100644 --- a/asterixdb/asterix-server/src/main/opt/local/bin/start-sample-cluster.bat +++ b/asterixdb/asterix-server/src/main/opt/local/bin/start-sample-cluster.bat @@ -102,9 +102,9 @@ goto :post_timestamp :timestamp -echo "--------------------------" >> %1 -echo "%date% %time%" >> %1 -echo "--------------------------" >> %1 +echo -------------------------- >> %1 +echo %date% %time% >> %1 +echo -------------------------- >> %1 exit /B 0 :post_timestamp -- To view, visit https://asterix-gerrit.ics.uci.edu/1605 To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings Gerrit-MessageType: merged Gerrit-Change-Id: I24581eb36e193628b93cb5be52903beb206c603d Gerrit-PatchSet: 2 Gerrit-Project: asterixdb Gerrit-Branch: master Gerrit-Owner: Michael Blow <[email protected]> Gerrit-Reviewer: Ian Maxon <[email protected]> Gerrit-Reviewer: Jenkins <[email protected]> Gerrit-Reviewer: Michael Blow <[email protected]> Gerrit-Reviewer: Till Westmann <[email protected]>
