def setVCPUs(uuid, vcpus, cache_only=None): if cache_only: return (0, "no-ops for caching", {}) try: support.setVCPUs(uuid, vcpus) except errors.VirtualizationException, ve: return (1, str(ve), {})
def setVCPUs(uuid, vcpus, cache_only=None): if cache_only: return (0, "no-ops for caching", {}) try: support.setVCPUs(uuid, vcpus) except errors.VirtualizationException: ve = sys.exc_info()[1] return (1, str(ve), {}) return (0, "VCPUs set to %s on %s." % (str(vcpus), str(uuid)), {})