Displaying 5 results from an estimated 5 matches for "a783".
Did you mean:
783
2004 Sep 21
0
SIP Phone dropping calls, SIP Softphones working fine
...not going to cut it
at home. Here is some verbose output from * when I try to make the
outgoing call. Again, Incoming calls to the i2004 work perfectly. I'm
stumped.
Connected to Asterisk CVS-HEAD-09/12/04-17:37:58 currently running on
Barrat (pid = 1086)
-- Executing Goto("SIP/i2004-a783", "outgoing|13136717890|1") in new stack
-- Goto (outgoing,13136717890,1)
-- Executing Goto("SIP/i2004-a783", "pri-out|13136717890|1") in new stack
-- Goto (pri-out,13136717890,1)
-- Executing Dial("SIP/i2004-a783", "SIP/13136717890@...
2020 Jan 28
0
[v2v PATCH 2/2] -o rhv-upload: check guest arch with cluster
...UNDEFINED = "undefined"
+ X86_64 = "x86_64"
+
+ def __init__(self, arch):
+ self._arch = arch
+
+ def __str__(self):
+ return self._arch
+
+
+class Cpu(object):
+ architecture = Architecture.X86_64
+
+
class Cluster(object):
id = "2e97537b-a783-4706-af9e-75cb2e032dcd"
name = "Default"
+ cpu = Cpu()
class Configuration(object):
diff --git a/v2v/output_rhv_upload.ml b/v2v/output_rhv_upload.ml
index 01b1ce4a..db14755c 100644
--- a/v2v/output_rhv_upload.ml
+++ b/v2v/output_rhv_upload.ml
@@ -248,6 +248,8 @@ object...
2020 Jan 28
2
[v2v PATCH 1/2] Add back guestcaps as parameter of output#prepare_targets
It will be used to do extra checks in the output before copying the
disks.
Partially revert commit 3bafec4e693a25ef1c84abc0fd1bc3251862c7de.
---
v2v/output_glance.ml | 2 +-
v2v/output_json.ml | 2 +-
v2v/output_libvirt.ml | 2 +-
v2v/output_local.ml | 2 +-
v2v/output_null.ml | 2 +-
v2v/output_openstack.ml | 2 +-
v2v/output_qemu.ml | 2 +-
v2v/output_rhv.ml
2019 Sep 19
2
[PATCH] v2v: -o rhv-upload: adapt phony ovirtsdk4 module to recent changes
...42 100644
--- a/v2v/test-v2v-o-rhv-upload-module/ovirtsdk4/types.py
+++ b/v2v/test-v2v-o-rhv-upload-module/ovirtsdk4/types.py
@@ -22,12 +22,13 @@ from enum import Enum
from ovirtsdk4 import imageio_port
class Cluster(object):
- def __init__(self, name):
- pass
+ id = "2e97537b-a783-4706-af9e-75cb2e032dcd"
+ name = "Default"
class Configuration(object):
def __init__(self, type=None, data=None):
pass
+
class ConfigurationType(Enum):
OVA = 'ova'
OVF = 'ovf'
@@ -71,9 +72,8 @@ class Disk(object):
sparse = F...
2020 Jan 10
7
[v2v PATCH 0/6] Various Python pycodestyle fixes
Fixes the majority of the pycodestyle issues in the Python scripts, and
fix the existing test-v2v-python-syntax.sh to use pycodestyle to
actually perform style checks.
Pino Toscano (6):
PEP 8: adapt whitespaces in lines
PEP 8: move imports at the top
PEP 8: adapt empty lines
tests: find all the Python scripts for syntax checks
-o rhv-upload: remove unused Python imports
Revamp check