Skip to content

Commit

Permalink
FISH-5722 remove duplicity in processing corePoolSize
Browse files Browse the repository at this point in the history
Co-authored-by: Andrew Pielage <pandrex247@hotmail.com>
  • Loading branch information
aubi and Pandrex247 authored Jun 17, 2022
1 parent 6d33045 commit 6cecdb9
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -872,11 +872,6 @@ private void generateManagedScheduledExecutorService(Node nextKid, String scope)
String hungaftersecondsValue = hungaftersecondsNode.getNodeValue();
managedScheduledExecutorServiceResource.setAttribute(HUNG_AFTER_SECONDS, hungaftersecondsValue);
}
Node corepoolsizeNode = attributes.getNamedItem(CORE_POOL_SIZE);
if (corepoolsizeNode != null) {
String corepoolsizeValue = corepoolsizeNode.getNodeValue();
managedScheduledExecutorServiceResource.setAttribute(CORE_POOL_SIZE, corepoolsizeValue);
}
Node keepalivesecondsNode = attributes.getNamedItem(KEEP_ALIVE_SECONDS);
if (keepalivesecondsNode != null) {
String keepalivesecondsValue = keepalivesecondsNode.getNodeValue();
Expand Down

0 comments on commit 6cecdb9

Please sign in to comment.