amazon-kinesis-client-python icon indicating copy to clipboard operation
amazon-kinesis-client-python copied to clipboard

Sample helper script doesn't work on Windows

Open arundhaj opened this issue 9 years ago • 1 comments

Actually, the helper script generates command for UNIX system. In UNIX, jars in classpath are separated by colons however for Windows it has to be semi-colon.

So, in amazon_kclpy_helper.py changed return ':'.join(... to return ';'.join(.... There were two places that needs to be changed.

Also in sample.properties file set executableName = python my_kclpy_app.py

arundhaj avatar Jan 04 '17 09:01 arundhaj

Thanks for reporting this. I'm looking to improve the launcher script, but I don't currently have an ETA.

I'll look at making this change for the short term.

pfifer avatar Jan 04 '17 15:01 pfifer