Bug 619741
Summary: | Content-Length is not set in HTTP Headers from RHN Satellite, if the response exceeds 8kb | ||||||
---|---|---|---|---|---|---|---|
Product: | Red Hat Satellite Proxy 5 | Reporter: | Vishal Gaikwad <vgaikwad> | ||||
Component: | Server | Assignee: | Miroslav Suchý <msuchy> | ||||
Status: | CLOSED CURRENTRELEASE | QA Contact: | Dimitar Yordanov <dyordano> | ||||
Severity: | high | Docs Contact: | |||||
Priority: | high | ||||||
Version: | 530 | CC: | cperry, dyordano, mmraka, xdmoon | ||||
Target Milestone: | --- | ||||||
Target Release: | --- | ||||||
Hardware: | All | ||||||
OS: | Linux | ||||||
Whiteboard: | |||||||
Fixed In Version: | spacewalk-proxy-0.5.7-15.el4sat | Doc Type: | Bug Fix | ||||
Doc Text: | Story Points: | --- | |||||
Clone Of: | Environment: | ||||||
Last Closed: | 2010-10-28 15:01:29 UTC | Type: | --- | ||||
Regression: | --- | Mount Type: | --- | ||||
Documentation: | --- | CRM: | |||||
Verified Versions: | Category: | --- | |||||
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||
Cloudforms Team: | --- | Target Upstream Version: | |||||
Embargoed: | |||||||
Bug Depends On: | |||||||
Bug Blocks: | 487678, 518253, 608754 | ||||||
Attachments: |
|
Description
Vishal Gaikwad
2010-07-30 11:49:45 UTC
After consultation with Justin, this looks more like a RHN Proxy bug. After checking proxy code, I found out, this issue shall already have been resolved by following commit: 73dbab3dc8f362c1280b381ffb508a67c96ff3e0 (part of BZ#578854). Created attachment 448680 [details]
How was reproduced.
I have just manage to reproduce and verify the issue on RHEL 5, RHN Proxy 5.3. For more info see attachment. Dimi Verified in stage. Created 4 custom info keys with very long (more then 1kB) description and run #!/usr/bin/python import xmlrpclib sat = xmlrpclib.Server('http://smqe-ws16.lab.eng.brq.redhat.com/rpc/api', verbose=1) key = sat.auth.login('admin', 'password') allkeys = sat.system.custominfo.listAllKeys(key) for a in allkeys: print "%s" % (a['id']) Also run #!/usr/bin/python import xmlrpclib sat = xmlrpclib.Server('http://smqe-ws16.lab.eng.brq.redhat.com/rpc/api', verbose=1) key = sat.auth.login('admin', 'admin') allkeys = sat.system.listSystems(key) for a in allkeys: print "%s" % (a['id']) print sat.system.listPackages(key, a['id']) Both scripts worked and showed that response had transfer-encoding: chunked. The 5.4.0 RHN Satellite and RHN Proxy release has occurred. This issue has been resolved with this release. RHEA-2010:0801 - RHN Satellite Server 5.4.0 Upgrade https://rhn.redhat.com/rhn/errata/details/Details.do?eid=10332 RHEA-2010:0803 - RHN Tools enhancement update https://rhn.redhat.com/rhn/errata/details/Details.do?eid=10333 RHEA-2010:0802 - RHN Proxy Server 5.4.0 bug fix update https://rhn.redhat.com/rhn/errata/details/Details.do?eid=10334 RHEA-2010:0800 - RHN Satellite Server 5.4.0 https://rhn.redhat.com/rhn/errata/details/Details.do?eid=10335 Docs are available: http://docs.redhat.com/docs/en-US/Red_Hat_Network_Satellite/index.html Regards, Clifford |