Skip to content

Update to 1.9.0 release of the KCL #71

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 7, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions amazon_kclpy/kcl.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,9 @@ def _perform_action(self, action):

try:
action.dispatch(self.checkpointer, self.processor)
except SystemExit as sys_exit:
# On a system exit exception just go ahead and exit
raise sys_exit
except:
'''
We don't know what the client's code could raise and we have no way to recover if we let it propagate
Expand Down
24 changes: 12 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@

PACKAGE_NAME = 'amazon_kclpy'
JAR_DIRECTORY = os.path.join(PACKAGE_NAME, 'jars')
PACKAGE_VERSION = '1.4.5'
PACKAGE_VERSION = '1.5.0'
PYTHON_REQUIREMENTS = [
'boto',
# argparse is part of python2.7 but must be declared for python2.6
Expand All @@ -59,23 +59,23 @@
]
REMOTE_MAVEN_PACKAGES = [
# (group id, artifact id, version),
('com.amazonaws', 'amazon-kinesis-client', '1.7.6'),
('com.amazonaws', 'aws-java-sdk-dynamodb', '1.11.151'),
('com.amazonaws', 'aws-java-sdk-s3', '1.11.151'),
('com.amazonaws', 'aws-java-sdk-kms', '1.11.151'),
('com.amazonaws', 'aws-java-sdk-core', '1.11.151'),
('com.amazonaws', 'amazon-kinesis-client', '1.9.0'),
('com.amazonaws', 'aws-java-sdk-dynamodb', '1.11.272'),
('com.amazonaws', 'aws-java-sdk-s3', '1.11.272'),
('com.amazonaws', 'aws-java-sdk-kms', '1.11.272'),
('com.amazonaws', 'aws-java-sdk-core', '1.11.272'),
('org.apache.httpcomponents', 'httpclient', '4.5.2'),
('org.apache.httpcomponents', 'httpcore', '4.4.4'),
('commons-codec', 'commons-codec', '1.9'),
('software.amazon.ion', 'ion-java', '1.0.2'),
('com.fasterxml.jackson.core', 'jackson-databind', '2.6.6'),
('com.fasterxml.jackson.core', 'jackson-databind', '2.6.7.1'),
('com.fasterxml.jackson.core', 'jackson-annotations', '2.6.0'),
('com.fasterxml.jackson.core', 'jackson-core', '2.6.6'),
('com.fasterxml.jackson.dataformat', 'jackson-dataformat-cbor', '2.6.6'),
('com.fasterxml.jackson.core', 'jackson-core', '2.6.7'),
('com.fasterxml.jackson.dataformat', 'jackson-dataformat-cbor', '2.6.7'),
('joda-time', 'joda-time', '2.8.1'),
('com.amazonaws', 'jmespath-java', '1.11.151'),
('com.amazonaws', 'aws-java-sdk-kinesis', '1.11.151'),
('com.amazonaws', 'aws-java-sdk-cloudwatch', '1.11.151'),
('com.amazonaws', 'jmespath-java', '1.11.272'),
('com.amazonaws', 'aws-java-sdk-kinesis', '1.11.272'),
('com.amazonaws', 'aws-java-sdk-cloudwatch', '1.11.272'),
('com.google.guava', 'guava', '18.0'),
('com.google.protobuf', 'protobuf-java', '2.6.1'),
('commons-lang', 'commons-lang', '2.6'),
Expand Down