Displaying 2 results from an estimated 2 matches for "4f38cc4".
2009 May 21
2
[PATCH server] Fix anyterm for multinode support
.../proxy/anyterm-module$ http://${vmnodes:$1}:81/$1 [P]
+ RewriteRule ^/terminal/(.*)/$ http://${vmnodes:$1}:81/anyterm.html?param=$1 [P,NE]
+
ProxyPass /ovirt http://AdminNodeFQDN/ovirt retry=3
diff --git a/src/app/controllers/vm_controller.rb b/src/app/controllers/vm_controller.rb
index 4f38cc4..f0e10d7 100644
--- a/src/app/controllers/vm_controller.rb
+++ b/src/app/controllers/vm_controller.rb
@@ -43,7 +43,7 @@ class VmController < ApplicationController
@vm = Vm.find(params[:id])
redirect_to "https://" + params[:host] +
"/terminal/" + @vm...
2009 May 20
1
[PATCH server] don't add nil key to failures hash for PartialSuccessError handling.
...failures[@storage_pool] = ex.message
+ failures[@storage_pool.nil? ? storage_pool_id :
+ @storage_pool] = ex.message
end
end
unless failures.empty?
diff --git a/src/app/controllers/vm_controller.rb b/src/app/controllers/vm_controller.rb
index 8165a85..4f38cc4 100644
--- a/src/app/controllers/vm_controller.rb
+++ b/src/app/controllers/vm_controller.rb
@@ -94,10 +94,9 @@ class VmController < ApplicationController
begin
svc_destroy(vm_id)
successes << @vm
- rescue PermissionError => perm_error
- failures[@vm...