Merge feacf03f93 into 49fa32d68e
This commit is contained in:
commit
49dc113679
5 changed files with 4 additions and 8 deletions
|
|
@ -134,6 +134,7 @@
|
|||
<configuration>
|
||||
<release>8</release>
|
||||
<encoding>UTF-8</encoding>
|
||||
<failOnWarning>true</failOnWarning>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
|
|
|
|||
|
|
@ -966,13 +966,6 @@ public class KinesisClientLibConfiguration {
|
|||
return shutdownGraceMillis;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return Interval in milliseconds between retrying the scheduler initialization.
|
||||
*/
|
||||
public long getSchedulerInitializationBackoffTimeMillis() {
|
||||
return schedulerInitializationBackoffTimeMillis;
|
||||
}
|
||||
|
||||
/*
|
||||
* // CHECKSTYLE:IGNORE HiddenFieldCheck FOR NEXT 190 LINES
|
||||
* /**
|
||||
|
|
|
|||
|
|
@ -98,7 +98,7 @@ class AWSCredentialsProviderPropertyValueDecoder implements IPropertyValueDecode
|
|||
provider = constructProvider(providerName, () -> {
|
||||
Class<?>[] argTypes = new Class<?>[nameAndArgs.length - 1];
|
||||
Arrays.fill(argTypes, String.class);
|
||||
return clazz.getConstructor(argTypes).newInstance(varargs);
|
||||
return clazz.getConstructor(argTypes).newInstance((Object[]) varargs);
|
||||
});
|
||||
|
||||
if (provider == null) {
|
||||
|
|
|
|||
|
|
@ -189,6 +189,7 @@
|
|||
<configuration>
|
||||
<release>8</release>
|
||||
<encoding>UTF-8</encoding>
|
||||
<failOnWarning>true</failOnWarning>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
|
|
|
|||
1
pom.xml
1
pom.xml
|
|
@ -34,6 +34,7 @@
|
|||
|
||||
<properties>
|
||||
<awssdk.version>2.25.11</awssdk.version>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
|
||||
<licenses>
|
||||
|
|
|
|||
Loading…
Reference in a new issue