You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 23, 2026. It is now read-only.
This breaks using register_stream_consumer with software.amazon.awssdk.services.kinesis.KinesisAsyncClient since it can't unmarshall the date in the response: software.amazon.awssdk.core.exception.SdkClientException: Unable to parse date : 2020-08-11T05:10:06.349Z
...
Expected behavior
ConsumerCreationTimestamp should be a float UNIX timestamp
...
Actual behavior
ConsumerCreationTimestamp is a string formatted timestamp
...
Steps to reproduce
Run any register_stream_consumer command
Command used to start LocalStack
Java testcontainers/localstack
...
Client code (AWS SDK code snippet, or sequence of "awslocal" commands)
Type of request: This is a ...
[x] bug report
[ ] feature request
Detailed description
register_stream_consumer returns ConsumerCreationTimestamp in the format '%Y-%m-%dT%H:%M:%S.%fZ', but according to the AWS CLI docs (also this)it should be a UNIX timestamp.
This breaks using register_stream_consumer with
software.amazon.awssdk.services.kinesis.KinesisAsyncClientsince it can't unmarshall the date in the response:software.amazon.awssdk.core.exception.SdkClientException: Unable to parse date : 2020-08-11T05:10:06.349Z...
Expected behavior
ConsumerCreationTimestamp should be a float UNIX timestamp
...
Actual behavior
ConsumerCreationTimestamp is a string formatted timestamp
...
Steps to reproduce
Run any register_stream_consumer command
Command used to start LocalStack
Java testcontainers/localstack
...
Client code (AWS SDK code snippet, or sequence of "awslocal" commands)
...