amazon-kinesis-client-python
amazon-kinesis-client-python copied to clipboard
Sample helper script doesn't work on Windows
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
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.