We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Detected during #6198 PR test on Windows 64 bit
self = <test_triblertunnel_community.TestTriblerTunnelCommunity testMethod=test_perform_http_request_multipart> async def test_perform_http_request_multipart(self): """ Test whether getting a large HTTP response works """ self.add_node_to_experiment(self.create_node()) self.nodes[1].overlay.settings.peer_flags.add(PEER_FLAG_EXIT_HTTP) await self.introduce_nodes() http_port = TestTriblerTunnelCommunity.get_free_port() http_tracker = HTTPTracker(http_port) http_tracker.tracker_info.add_info_about_infohash('0', 0, 0) http_tracker.tracker_info.infohashes['0']['downloaded'] = os.urandom(10000) await http_tracker.start() response = await self.nodes[0].overlay.perform_http_request(('127.0.0.1', http_tracker.port), b'GET /scrape?info_hash=0 HTTP/1.1\r\n\r\n') > self.assertEqual(response.split(b'\r\n')[0], b'HTTP/1.1 200 OK') E AttributeError: 'NoneType' object has no attribute 'split' src\tribler-core\tribler_core\modules\tunnel\tests\test_triblertunnel_community.py:593: AttributeError
The text was updated successfully, but these errors were encountered:
Seems to be working now.
Sorry, something went wrong.
Encountered it again in #6503, see here for the detailled log.
Encountered it here: #6708 Failed job: https://jenkins-ci.tribler.org/job/GH_Tribler_PR_Tests/job/PR_win64_pytest/2900/
All tested-related issues should be solved in #6851 after merging #6850 and #6855.
If the issue is encountered again, feel free to reopen it.
No branches or pull requests
Detected during #6198 PR test on Windows 64 bit
The text was updated successfully, but these errors were encountered: