in aws-codebuild-common/src/main/java/jetbrains/buildServer/aws/codebuild/CodeBuildUtil.java [79:85]
public static int getTimeoutMinutesInt(@NotNull Map<String, String> params) {
try {
return Integer.parseInt(params.get(TIMEOUT_MINUTES_PARAM));
} catch (NumberFormatException e) {
return DEFAULT_TIMEOUT_MINUTES;
}
}