awslabs / awslabs/amazon-kinesis-client-python
Sample helper script doesn't work on Windows
Open
bug
- Dominant language
- Python
- Stars
- 377
- Forks
- 228
- PR merge metrics
- No merged PRs in 30d
Description
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`
Contributor guide
Assessment
This issue has not been assessed yet.