Skip to content

Commit

Permalink
Use more descriptive parameters name. Related to governance issue 48.
Browse files Browse the repository at this point in the history
  • Loading branch information
carlospzurita committed Dec 13, 2018
1 parent 622d2b1 commit 974769c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public interface EtfConfigPropertyChangeListener {
private static final String ETF_CONFIG_PROPERTY_FILENAME = "etf-config.properties";
private static final String ETF_CONFIG_DIR_NAME = "config";
private static final String ETF_PARALLEL_EXECUTIONS = "etf.parallel";
private static final STRING ETF_QUEUE_SIZE = "etf.queue"
private static final String ETF_QUEUE_SIZE = "etf.queue";

@Autowired
private ServletContext servletContext;
Expand Down
10 changes: 6 additions & 4 deletions src/main/resources/etf-config.properties
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,13 @@ etf.webapp.base.url = http://localhost:8080/etf-webapp
# Default: simplified
# etf.workflows = simplified

# Maximum number of test whith can run in parallel.
etf.parallel = 4
# Maximum number of tests which can run in parallel.
# Default: auto (the number of CPU cores of this machine)
etf.testruns.threads.max = auto

# Size of the task pool queue
# Default: Three times the size of the pool
etf.queue = 12
# Default: auto (three times the parameter etf.testruns.threads.max)
etf.testruns.queued.max = auto


##################################################################################
Expand Down

0 comments on commit 974769c

Please sign in to comment.