Displaying 20 results from an estimated 56 matches for "httpconnect".
2013 Apr 28
3
Dovecot Solr Panic
...e(ContextHandlerCollection.java:230)
at org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152)
at org.mortbay.jetty.Server.handle(Server.java:326)
at org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:542)
at org.mortbay.jetty.HttpConnection$RequestHandler.content(HttpConnection.java:943)
at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:843)
at org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:218)
at org.mor...
2011 Feb 25
0
RCurl Post
...dlerCollection.handle(ContextHandlerCollection.java:230)\n\tat
org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)\n\tat
org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152)\n\tat
org.mortbay.jetty.Server.handle(Server.java:326)\n\tat
org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:542)\n\tat
org.mortbay.jetty.HttpConnection$RequestHandler.content(HttpConnection.java:943)\n\tat
org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:756)\n\tat
org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:212)\n\tat
org.mortbay.jetty.HttpConne...
2018 Jun 26
2
[PATCH v3] v2v: -o rhv-upload: Use Unix domain socket to access imageio (RHBZ#1588088).
v2 was here:
https://www.redhat.com/archives/libguestfs/2018-June/msg00109.html
v3:
- Added/fixed all suggestions from Nir in previous review.
Q: I wasn't sure if we still need the "UnsupportedError" class so I
left it in.
Q: Does the Unix socket always have the same name? What happens if
there's more than one transfer happening?
I tested this both ways, and it worked both
2007 Jun 13
1
seleniumrc_fu initial test issue
I have the seleniumrc_fu plugin installed and setup according to the
instructions, and can run the selenium:test task if there are no test
cases. My first test case simply does an open_home_page to verify
that things are working at all. Unfortuniately there seems to be an
issue with even this simple a test case. The following suggests that
there is an issue with the getNewBrowserSession
2002 May 14
0
Solaris 2.8 Samba 2.2.[2|4]/CUPS 1.1.14 compilation problem
...ibraries=/opt/cups-1.1.14/lib
I've also tried setting:
CFLAGS=-I/opt/cups-1.1.14/include:/usr/local/include
CXXFLAGS=-I/opt/cups-1.1.14/include:/usr/local/include
DSOFLAGS=-L/opt/cups-1.1.14/lib/:/usr/local/lib
LDFLAGS=-L/opt/cups-1.1.14/lib/:/usr/local/lib
But continue to get:
checking for httpConnect in -lcups... no
As far as I can tell from the configure script (which is not much)
this is not good. Checking manually shows that:
nm /opt/cups-1.1.14/lib/libcups.a | grep httpConnect
U httpConnect
000000e0 T httpConnect
00000114 T httpConnectEncrypt
U httpConnectEncrypt
What a...
2018 Jun 26
2
Re: [PATCH v3] v2v: -o rhv-upload: Use Unix domain socket to access imageio (RHBZ#1588088).
...ugin.py
> +++ b/v2v/rhv-upload-plugin.py
> @@ -19,11 +19,12 @@
> import builtins
> import json
> import logging
> +import socket
> import ssl
> import sys
> import time
>
> -from http.client import HTTPSConnection
> +from http.client import HTTPSConnection, HTTPConnection
> from urllib.parse import urlparse
>
> import ovirtsdk4 as sdk
> @@ -56,6 +57,28 @@ def debug(s):
> print(s, file=sys.stderr)
> sys.stderr.flush()
>
> +def find_host(connection):
> + """Return the current host object or None."...
2018 Jun 26
0
[PATCH v3] v2v: -o rhv-upload: Use Unix domain socket to access imageio (RHBZ#1588088).
...index f215eaecf..354cc524c 100644
--- a/v2v/rhv-upload-plugin.py
+++ b/v2v/rhv-upload-plugin.py
@@ -19,11 +19,12 @@
import builtins
import json
import logging
+import socket
import ssl
import sys
import time
-from http.client import HTTPSConnection
+from http.client import HTTPSConnection, HTTPConnection
from urllib.parse import urlparse
import ovirtsdk4 as sdk
@@ -56,6 +57,28 @@ def debug(s):
print(s, file=sys.stderr)
sys.stderr.flush()
+def find_host(connection):
+ """Return the current host object or None."""
+ try:
+ with bui...
2020 Jul 08
2
[PATCH] RFC: rhv-upload-plugin: Use imageio client
...t a/v2v/rhv-upload-plugin.py b/v2v/rhv-upload-plugin.py
index 8c11012b..172da602 100644
--- a/v2v/rhv-upload-plugin.py
+++ b/v2v/rhv-upload-plugin.py
@@ -26,12 +26,17 @@ import ssl
import sys
import time
+from ovirt_imageio.client import ImageioClient
+
from http.client import HTTPSConnection, HTTPConnection
from urllib.parse import urlparse
import ovirtsdk4 as sdk
import ovirtsdk4.types as types
+# Version 2 supports the buffer protocol, improving performance.
+API_VERSION = 2
+
# Timeout to wait for oVirt disks to change status, or the transfer
# object to finish initializing [seconds]....
2018 Jun 27
0
Re: [PATCH v3] v2v: -o rhv-upload: Use Unix domain socket to access imageio (RHBZ#1588088).
...>> @@ -19,11 +19,12 @@
>> import builtins
>> import json
>> import logging
>> +import socket
>> import ssl
>> import sys
>> import time
>>
>> -from http.client import HTTPSConnection
>> +from http.client import HTTPSConnection, HTTPConnection
>> from urllib.parse import urlparse
>>
>> import ovirtsdk4 as sdk
>> @@ -56,6 +57,28 @@ def debug(s):
>> print(s, file=sys.stderr)
>> sys.stderr.flush()
>>
>> +def find_host(connection):
>> + """Return t...
2018 Jun 22
4
v2v: -o rhv-upload: Use Unix domain socket to access imageio (RHBZ#1588088).
v1 was here:
https://www.redhat.com/archives/libguestfs/2018-June/msg00099.html
v2:
- Just fixes the two problems noted in the review of the previous version.
Rich.
2018 Jun 21
0
[PATCH 2/2] v2v: -o rhv-upload: Use Unix domain socket to access imageio (RHBZ#1588088).
...index 419008517..0c5eec7d3 100644
--- a/v2v/rhv-upload-plugin.py
+++ b/v2v/rhv-upload-plugin.py
@@ -19,11 +19,12 @@
import builtins
import json
import logging
+import socket
import ssl
import sys
import time
-from http.client import HTTPSConnection
+from http.client import HTTPSConnection, HTTPConnection
from urllib.parse import urlparse
import ovirtsdk4 as sdk
@@ -117,6 +118,25 @@ def open(readonly):
if time.time() > endt:
raise RuntimeError("timed out waiting for disk to become unlocked")
+ # Get the current host. If it fails, don't worry.
+...
2018 Jun 22
0
[PATCH v2 2/2] v2v: -o rhv-upload: Use Unix domain socket to access imageio (RHBZ#1588088).
...index 5be426897..a83b95305 100644
--- a/v2v/rhv-upload-plugin.py
+++ b/v2v/rhv-upload-plugin.py
@@ -19,11 +19,12 @@
import builtins
import json
import logging
+import socket
import ssl
import sys
import time
-from http.client import HTTPSConnection
+from http.client import HTTPSConnection, HTTPConnection
from urllib.parse import urlparse
import ovirtsdk4 as sdk
@@ -117,6 +118,25 @@ def open(readonly):
if time.time() > endt:
raise RuntimeError("timed out waiting for disk to become unlocked")
+ # Get the current host. If it fails, don't worry.
+...
2020 Jul 09
2
Re: [PATCH] RFC: rhv-upload-plugin: Use imageio client
...vms in virt-v2v runing on
arm, importing to oVirt/RHV running on x86/ppc?
> > - params['rhv_direct'] is ignored, we always try direct transfer now.
>
> We should drop it from the OCaml code?
And break users that used this flag?
> [...]
>
> > -# Modify http.client.HTTPConnection to work over a Unix domain socket.
> > -# Derived from uhttplib written by Erik van Zijst under an MIT license.
> > -# (https://pypi.org/project/uhttplib/)
> > -# Ported to Python 3 by Irit Goihman.
> > -
> > -
> > -class UnixHTTPConnection(HTTPConnection):
&g...
2018 Jun 25
1
Re: [PATCH v2 2/2] v2v: -o rhv-upload: Use Unix domain socket to access imageio (RHBZ#1588088).
...ugin.py
> +++ b/v2v/rhv-upload-plugin.py
> @@ -19,11 +19,12 @@
> import builtins
> import json
> import logging
> +import socket
> import ssl
> import sys
> import time
>
> -from http.client import HTTPSConnection
> +from http.client import HTTPSConnection, HTTPConnection
> from urllib.parse import urlparse
>
> import ovirtsdk4 as sdk
> @@ -117,6 +118,25 @@ def open(readonly):
> if time.time() > endt:
> raise RuntimeError("timed out waiting for disk to become
> unlocked")
>
> + # Get the current h...
2018 Jun 21
6
v2v: -o rhv-upload: Use Unix domain socket to access imageio (RHBZ#1588088).
These two patches add support for using a Unix domain socket to
directly access imageio in the case where imageio is running on the
conversion host (usually that means virt-v2v is running on the RHV
node and something else -- eg. CFME scripts -- arranges that the RHV
node is the same one running imageio).
Conversions in the normal case are not affected - they happen over TCP
as usual.
This was
2020 Feb 24
2
Re: [PATCH v2v v2 2/2] rhv-upload: Check that rhv-disk-uuid is not already taken (RHBZ#1789279)
...oad-plugin.py
> index d3e6260e97f4..413ad53b05ab 100644
> --- a/v2v/rhv-upload-plugin.py
> +++ b/v2v/rhv-upload-plugin.py
> @@ -26,6 +26,9 @@ import ssl
> import sys
> import time
>
> +import nbdkit
> +import errno
> +
> from http.client import HTTPSConnection, HTTPConnection
> from urllib.parse import urlparse
>
> @@ -461,6 +464,15 @@ def create_disk(connection):
> system_service = connection.system_service()
> disks_service = system_service.disks_service()
>
> + uuid = params.get('rhv_disk_uuid')
> + if uuid is n...
2018 Dec 07
2
[PATCH] v2v: -o rhv-upload: Fix upload when using https
...context.check_hostname = False
context.verify_mode = ssl.CERT_NONE
http = HTTPSConnection(
destination_url.hostname,
destination_url.port,
context = context
)
elif destination_url.scheme == "http":
http = HTTPConnection(
destination_url.hostname,
destination_url.port,
)
else:
raise RuntimeError("unknown URL scheme (%s)" % destination_url.scheme)
# The first request is to fetch the features of the server.
# Authentication was needed only fo...
2020 Jul 09
2
Re: [PATCH] RFC: rhv-upload-plugin: Use imageio client
...github.com/libguestfs/virt-v2v/blob/784be60842d088596d7af938f90c689083677dca/v2v/output_rhv_upload.ml#L191
>
> As you say we do need to preserve the command line option, but it'll
> be ignored.
Sounds good.
> > > [...]
> > >
> > > > -# Modify http.client.HTTPConnection to work over a Unix domain socket.
> > > > -# Derived from uhttplib written by Erik van Zijst under an MIT license.
> > > > -# (https://pypi.org/project/uhttplib/)
> > > > -# Ported to Python 3 by Irit Goihman.
> > > > -
> > > > -
>...
2020 Jul 09
0
Re: [PATCH] RFC: rhv-upload-plugin: Use imageio client
...e the package and the
dependencies look quite light, basically just Python and python3-six.
Why is it only available for x86_64 and ppc64le?
> - params['rhv_direct'] is ignored, we always try direct transfer now.
We should drop it from the OCaml code?
[...]
> -# Modify http.client.HTTPConnection to work over a Unix domain socket.
> -# Derived from uhttplib written by Erik van Zijst under an MIT license.
> -# (https://pypi.org/project/uhttplib/)
> -# Ported to Python 3 by Irit Goihman.
> -
> -
> -class UnixHTTPConnection(HTTPConnection):
Why drop this part?
Rest of th...
2004 May 24
1
debian unstable 3.0.4-3 panics
...#10 /usr/lib/libgnutls.so.7(_gnutls_mpi_scan+0x39) [0x4034be29]
#11 /usr/lib/libgnutls.so.7(_gnutls_dh_calc_mpis+0x7b) [0x4035389b]
#12 /usr/lib/libgnutls.so.7(gnutls_global_init+0xc2) [0x4034dd82]
#13 /usr/lib/libcups.so.2(httpInitialize+0x5d) [0x40118bad]
#14 /usr/lib/libcups.so.2(httpConnectEncrypt+0x22) [0x40118d22]
#15 /usr/lib/libcups.so.2(httpConnect+0x38) [0x40118cf8]
#16 /usr/sbin/smbd(cups_printer_fn+0x41) [0x81b23b1]
#17 /usr/sbin/smbd(pcap_printer_fn+0x8b) [0x81b1fbb]
#18 /usr/sbin/smbd(add_all_printers+0x22) [0x81b7712]
#19 /usr/sbin/smbd(reload_services+0x6a)...