diff options
author | Rob Austein <sra@hactrn.net> | 2009-12-22 18:21:26 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2009-12-22 18:21:26 +0000 |
commit | a1cbec00430cd5684eb7733259a2f3a3555f7730 (patch) | |
tree | bdb7b865406d5cd9dbf29632f39ff7effbfea3f2 | |
parent | aaecbfca8799434284e881c5d1aa87614c64a5fe (diff) |
Turn off persistant connections, premature optimization of something
that's too complex already.
svn path=/rpkid/rpki/https.py; revision=2899
-rw-r--r-- | rpkid/rpki/https.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rpkid/rpki/https.py b/rpkid/rpki/https.py index 73644a55..b34883b7 100644 --- a/rpkid/rpki/https.py +++ b/rpkid/rpki/https.py @@ -48,8 +48,8 @@ debug_http = False debug_tls_certs = False # Whether we want persistent HTTP streams, when peer also supports them -want_persistent_client = True -want_persistent_server = True +want_persistent_client = False +want_persistent_server = False # Default HTTP connection timeouts. Given our druthers, we'd prefer # that the client close the connection, as this avoids the problem of |