You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ek...@apache.org on 2015/05/13 12:00:47 UTC

git commit: updated refs/heads/master to c7d2e44

Repository: cloudstack
Updated Branches:
  refs/heads/master 45c0fa2fa -> c7d2e444d


Fixing license header in a file added during the LibVirt refactor
  - New class is MigrateKVMAsync


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/c7d2e444
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/c7d2e444
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/c7d2e444

Branch: refs/heads/master
Commit: c7d2e444d2981464dd115d1030371cde2fdaeb68
Parents: 45c0fa2
Author: wilderrodrigues <wr...@schubergphilis.com>
Authored: Wed May 13 11:56:43 2015 +0200
Committer: wilderrodrigues <wr...@schubergphilis.com>
Committed: Wed May 13 11:56:43 2015 +0200

----------------------------------------------------------------------
 .../kvm/resource/MigrateKVMAsync.java           | 20 +++++++++++++++++++-
 1 file changed, 19 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/c7d2e444/plugins/hypervisors/kvm/src/com/cloud/hypervisor/kvm/resource/MigrateKVMAsync.java
----------------------------------------------------------------------
diff --git a/plugins/hypervisors/kvm/src/com/cloud/hypervisor/kvm/resource/MigrateKVMAsync.java b/plugins/hypervisors/kvm/src/com/cloud/hypervisor/kvm/resource/MigrateKVMAsync.java
index fdec032..2df6c65 100644
--- a/plugins/hypervisors/kvm/src/com/cloud/hypervisor/kvm/resource/MigrateKVMAsync.java
+++ b/plugins/hypervisors/kvm/src/com/cloud/hypervisor/kvm/resource/MigrateKVMAsync.java
@@ -1,3 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
 package com.cloud.hypervisor.kvm.resource;
 
 import java.util.concurrent.Callable;
@@ -35,4 +53,4 @@ public class MigrateKVMAsync implements Callable<Domain> {
             return dm.migrate(dconn, 1 << 0|1 << 11, dxml, vmName, "tcp:" + destIp, libvirtComputingResource.getMigrateSpeed());
         }
     }
-}
\ No newline at end of file
+}