Github user mcgilman commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2752#discussion_r193081251
--- Diff:
nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-jetty/src/main/java/org/apache/nifi/web/server/JettyServer.java
---
@@ -689,6 +689,7 @@ private void configureGenericConnector(Server server,
HttpConfiguration configur
serverConnector.setHost(hostname);
}
serverConnector.setPort(port);
+ serverConnector.setIdleTimeout(60000);
--- End diff --
Assuming these changes are related to the frequency of the automatic
browser refresh, should we make this timeout relative to the value configured
in `nifi.ui.autorefresh.interval`.
---