Steven Aerts

Results 17 comments of Steven Aerts

Hi @joshua-kim , reading the code `skipRecordsOnApplicationException` only work during `processRecords` calls and not during `shardEnded` calls which will keep retrying ad infinitum. We are requesting this feature as a...

I saw this when writing unit tests for my converter. But this is a generic problem of the `DefaultAttributeConvererProvider`. So if you create a `@DynamoDbBean` with a property of type...

Hi, I am perfectly aware of that. I am just saying that if you use by accident an `Object` you get the above stack trace due to a bug in...

@RyanSkraba there is one small corner case, which let me doubt. When using `CharSequence` as `stringType`, the `equals` method uses a newly introduced `Utf8#compareSequences`. As we could not use `java.lang.CharSequence#compare`...

@RyanSkraba is there still something I can do to help to get this change submitted?

Hi @zeshuai007 , If I understand you well, you are saying that in the example given above. The reader schema and the writer schema are compliant with the specification. But...

Be aware that `npm publish --tag ` is also not working. As the `--tag` option is ignored there.

Is there still something I can/have to do to get this patch submitted?

You can access specific metadata easily from `botocore` if you do not mind calling a private function: ```python from botocore.utils import IMDSFetcher IMDSFetcher()._get_request("/latest/meta-data/instance-type", None).text ```

We are seeing this problem too when configuring a local maven repository like this: ``` repositories { maven { url "/path/to/local/maven/repository/" } } ```