We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding make install solved #145 issue for most of the files, however another problem occurred with pmd:
make install
/usr/local/bin/pmd: line 231: 3297674 Killed java ${HEAPSIZE} ${PMD_JAVA_OPTS} $(jre_specific_vm_options) -cp "${classpath}" "${CLASSNAME}" "$@" Failed to collect pmd.sh for /dataset/github/apache/camel/components/camel-resilience4j/src/main/java/org/apache/camel/component/resilience4j/ResilienceReifier_configureBulkHead_3.java 4 scripts collected 9 metrics (sum=7455.6) for ResilienceReifier_configureBulkHead_3.java (101226/613218), in 38s
ResilienceReifier_configureBulkHead_3.java:
class ResilienceReifier_configureBulkHead_3 {public BulkheadConfig configureBulkHead(Resilience4jConfigurationCommon config) { if (!parseBoolean(config.getBulkheadEnabled(), false)) { return null; } BulkheadConfig.Builder builder = BulkheadConfig.custom(); if (config.getBulkheadMaxConcurrentCalls() != null) { builder.maxConcurrentCalls(parseInt(config.getBulkheadMaxConcurrentCalls())); } if (config.getBulkheadMaxWaitDuration() != null) { long duration = parseLong(config.getBulkheadMaxWaitDuration()); if (duration <= 0) { builder.maxWaitDuration(Duration.ZERO); } else { builder.maxWaitDuration(Duration.ofMillis(duration)); } } return builder.build(); }}
The text was updated successfully, but these errors were encountered:
@yegor256
Sorry, something went wrong.
No branches or pull requests
Adding
make install
solved #145 issue for most of the files, however another problem occurred with pmd:ResilienceReifier_configureBulkHead_3.java:
The text was updated successfully, but these errors were encountered: