Skip to content

Commit

Permalink
[FIXED JENKINS-19124]
Browse files Browse the repository at this point in the history
Added another attribute 'checkDependsOn' on <input> elements (akin to
'fillDependsOn', etc) to list up the other dependency controls, and
insert appropriate onchange events.

'checkUrl' is now just the stem portion of the URL to invoke, and
the client script builds up the query parameters.

Originally-Committed-As: 7232798611b66f4a03ad8670c07cb58220f4d866
  • Loading branch information
kohsuke committed Aug 8, 2013
1 parent c2b5947 commit 3cb5584
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/src/main/java/org/jvnet/hudson/test/JenkinsRule.java
Expand Up @@ -567,6 +567,8 @@ protected ServletContext createWebServer() throws Exception {

SocketConnector connector = new SocketConnector();
connector.setHeaderBufferSize(12*1024); // use a bigger buffer as Stapler traces can get pretty large on deeply nested URL
if (System.getProperty("port")!=null)
connector.setPort(Integer.parseInt(System.getProperty("port")));

server.setThreadPool(new ThreadPoolImpl(new ThreadPoolExecutor(10, 10, 10L, TimeUnit.SECONDS, new LinkedBlockingQueue<Runnable>(),new ThreadFactory() {
public Thread newThread(Runnable r) {
Expand Down

0 comments on commit 3cb5584

Please sign in to comment.