[376654] RejectedExecutionException is thrown if Finish is clicked and then trying to edit the host name field
diff --git a/features/org.eclipse.wst.server_ui.feature.patch/buildnotes_org.eclipse.wst.server_ui.feature.patch.html b/features/org.eclipse.wst.server_ui.feature.patch/buildnotes_org.eclipse.wst.server_ui.feature.patch.html
index dba78b3..a3e65f8 100644
--- a/features/org.eclipse.wst.server_ui.feature.patch/buildnotes_org.eclipse.wst.server_ui.feature.patch.html
+++ b/features/org.eclipse.wst.server_ui.feature.patch/buildnotes_org.eclipse.wst.server_ui.feature.patch.html
@@ -19,5 +19,6 @@
 <p>Bug <a href='https://bugs.eclipse.org/351899'>351899</a>. action properties passed to RunOnServerAction can be ignored</p>
 <p>Bug <a href='https://bugs.eclipse.org/352850'>352850</a>. [TCP/IP Monitor] Improper handling of national characters</p>
 <p>Bug <a href='https://bugs.eclipse.org/370894'>370894</a>. Context menu not available if server is empty</p>
+<p>Bug <a href='https://bugs.eclipse.org/376654'>376654</a>. RejectedExecutionException is thrown if Finish is clicked and then trying to edit the host name field</p>
 
 </body></html>
\ No newline at end of file
diff --git a/features/org.eclipse.wst.server_ui.feature.patch/feature.properties b/features/org.eclipse.wst.server_ui.feature.patch/feature.properties
index 2c097b0..508005e 100644
--- a/features/org.eclipse.wst.server_ui.feature.patch/feature.properties
+++ b/features/org.eclipse.wst.server_ui.feature.patch/feature.properties
@@ -33,6 +33,7 @@
 Bug https://bugs.eclipse.org/370894 Context menu not available if server is empty\n\
 Bug https://bugs.eclipse.org/352850 [TCP/IP Monitor] Improper handling of national characters\n\
 Bug https://bugs.eclipse.org/371828 IllegalArgumentException when trying to delete a Server from server definitions\n\
+Bug https://bugs.eclipse.org/376654 RejectedExecutionException is thrown if Finish is clicked and then trying to edit the host name field\n\
 \n\
 # "copyright" property - text of the "Feature Update Copyright"
 copyright=\
diff --git a/plugins/org.eclipse.wst.server.ui/META-INF/MANIFEST.MF b/plugins/org.eclipse.wst.server.ui/META-INF/MANIFEST.MF
index 119ee0f..58d7488 100644
--- a/plugins/org.eclipse.wst.server.ui/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.wst.server.ui/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: %pluginName
 Bundle-SymbolicName: org.eclipse.wst.server.ui; singleton:=true
-Bundle-Version: 1.1.210.qualifier
+Bundle-Version: 1.1.211.qualifier
 Bundle-Activator: org.eclipse.wst.server.ui.internal.ServerUIPlugin
 Bundle-Vendor: %providerName
 Bundle-Localization: plugin
diff --git a/plugins/org.eclipse.wst.server.ui/serverui/org/eclipse/wst/server/ui/internal/wizard/page/NewManualServerComposite.java b/plugins/org.eclipse.wst.server.ui/serverui/org/eclipse/wst/server/ui/internal/wizard/page/NewManualServerComposite.java
index ac97410..f54a7de 100644
--- a/plugins/org.eclipse.wst.server.ui/serverui/org/eclipse/wst/server/ui/internal/wizard/page/NewManualServerComposite.java
+++ b/plugins/org.eclipse.wst.server.ui/serverui/org/eclipse/wst/server/ui/internal/wizard/page/NewManualServerComposite.java
@@ -859,6 +859,7 @@
 	public void dispose() {
 		if (timer != null) {
 			timer.dispose();
+			timer = null;
 		}
 	}