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