{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":24494032,"defaultBranch":"trunk","name":"mysql-server","ownerLogin":"mysql","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2014-09-26T09:31:03.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/2452804?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1714652714.0","currentOid":""},"activityList":{"items":[{"before":"49ef33f7edadef3ae04665e73d1babd40179a4f1","after":"6dcee9fa4b19e67dea407787eba88e360dd679d9","ref":"refs/heads/8.0","pushedAt":"2024-05-02T12:24:34.000Z","pushType":"push","commitsCount":313,"pusher":{"login":"MyDanny","name":"Daniel Fischer","path":"/MyDanny","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8317900?s=80&v=4"},"commit":{"message":"Null-merge missing history from 8.0.36","shortMessageHtmlLink":"Null-merge missing history from 8.0.36"}},{"before":"53caac9929357b50e7a15c842a5bd0c2135f04b1","after":null,"ref":"refs/tags/mysql-cluster-8.0.37","pushedAt":"2024-04-30T19:45:28.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"bjornmu","name":"Bjorn Munch","path":"/bjornmu","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8928500?s=80&v=4"}},{"before":"53caac9929357b50e7a15c842a5bd0c2135f04b1","after":null,"ref":"refs/tags/mysql-8.0.37","pushedAt":"2024-04-30T19:45:18.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"bjornmu","name":"Bjorn Munch","path":"/bjornmu","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8928500?s=80&v=4"}},{"before":"3cd7cd2066f5563cff5a7f7395afda62d9d2827c","after":"2a7a6101e1a14b0ffd8203ec8cda6824e4f33fcc","ref":"refs/heads/cluster-7.5","pushedAt":"2024-04-30T14:27:41.000Z","pushType":"push","commitsCount":16,"pusher":{"login":"tanydixi","name":"Tanya Dixit","path":"/tanydixi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/115533448?s=80&v=4"},"commit":{"message":"Update License Book\n\nApproved-by: Balasubramanian Kandasamy ","shortMessageHtmlLink":"Update License Book"}},{"before":"0e71b34fcc395adb4d2a463b0e4df8d43d6baf9c","after":"ba4e709e3b763b87625b73305aaf72016a1eca98","ref":"refs/heads/cluster-7.6","pushedAt":"2024-04-30T13:07:20.000Z","pushType":"push","commitsCount":63,"pusher":{"login":"suhgoel","name":null,"path":"/suhgoel","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/139457416?s=80&v=4"},"commit":{"message":"Update License Book\n\nApproved-by: Balasubramanian Kandasamy ","shortMessageHtmlLink":"Update License Book"}},{"before":null,"after":"dc86e412f18b36ce271f791026714e8caa0ec919","ref":"refs/heads/8.4","pushedAt":"2024-04-30T12:01:12.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"bjornmu","name":"Bjorn Munch","path":"/bjornmu","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8928500?s=80&v=4"},"commit":{"message":"Fix the fix for bug #36337893: Make mysql_native_password optional\n\n- removed the new option\n- used the plugin flag to have the plugin disabled by default for the mysql_native plugin\n- fixed the tests\n- Ammended the new test to use the --[plugin]-foo= option instead.\n\nChange-Id: I1a595e1091cccfbf92e103bf17de0aa60a276e4b","shortMessageHtmlLink":"Fix the fix for bug #36337893: Make mysql_native_password optional"}},{"before":"7a32c20f035013fffa0683ae8f347dac9d556994","after":"0e71b34fcc395adb4d2a463b0e4df8d43d6baf9c","ref":"refs/heads/cluster-7.6","pushedAt":"2024-01-17T06:26:47.000Z","pushType":"push","commitsCount":47,"pusher":{"login":"prashanttekriwal","name":null,"path":"/prashanttekriwal","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3304488?s=80&v=4"},"commit":{"message":"Bug#35846221: Assertion Failure in /mysql-8.0.34/sql/field.cc:7119\n\nProblem is due to missing implementation of\nItem_func_make_set::fix_after_pullout(), which makes this particular\nMAKE_SET function be regarded as const and may thus be evaluated\nduring resolving.\n\nFixed by implementing a proper fix_after_pullout() function.\n\nChange-Id: I7094869588ce4133c4a925e1a237a37866a5bb3c\n(cherry picked from commit a9f0b388adeef837811fdba2bce2e4ba5b06863b)","shortMessageHtmlLink":"Bug#35846221: Assertion Failure in /mysql-8.0.34/sql/field.cc:7119"}},{"before":"19feac3674e2ae254b3e7fa7e116fc64ac284d8d","after":"49ef33f7edadef3ae04665e73d1babd40179a4f1","ref":"refs/heads/8.0","pushedAt":"2024-01-16T16:16:20.000Z","pushType":"push","commitsCount":307,"pusher":{"login":"msprajap","name":"Manohar Prajapati","path":"/msprajap","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/113508753?s=80&v=4"},"commit":{"message":"Bug#36066725 Regular mgmd hangs when sending it a stop node for ndbmtd\n\nRoot cause is that the mutexes 'theMultiTransporterMutex' and\n'clusterMgrThreadMutex' are taken in different order in the\ntwo respective call chains:\n\n1) ClusterMgr::threadMain() -> lock() -> NdbMutex_Lock(clusterMgrThreadMutex)\n - ::threadMain(), holding clusterMgrThreadMutex -> TransporterFacade::startConnecting()\n - TF::startConnecting -> lockMultiTransporters() <<<< HANG while holding clusterMgrThreadMutex\n\n2) TransporterRegistry::report_disconnect() -> lockMultiTransporters()\n - ::report_disconnect(), holding theMultiTransporterMutex, -> TransporterFacade::reportDisconnect()\n - TF::reportDisconnect -> ClusterMgr::reportDisconnected()\n - ClusterMgr::reportDisconnected() -> lock()\n - lock() -> NdbMutex_Lock(clusterMgrThreadMutex) <<<< Held by 1)\n\nPatch change TransporterRegistry::report_disconnect() such that the\ntheMultiTransporterMutex is released before calling reportDisconnect(NodeId).\n\nIt should be sufficient to hold theMultiTransporterMutex while\n::report_disconnect check if we are disconnecting a multiTransporter,\nand if all its Trps are in DISCONNECTED state. When this\nfinished we have set up 'ready_to_disconnect' and can release\ntheMultiTransporterMutex before -> reportDisconnect()\n\nChange-Id: I19be0d9d92184efb8f20a92aa7189b9b85f069bc","shortMessageHtmlLink":"Bug#36066725 Regular mgmd hangs when sending it a stop node for ndbmtd"}},{"before":"e3e76fccb086fefec0bdc72887a585497ff1283f","after":"3cd7cd2066f5563cff5a7f7395afda62d9d2827c","ref":"refs/heads/cluster-7.5","pushedAt":"2024-01-16T14:37:17.000Z","pushType":"push","commitsCount":19,"pusher":{"login":"suhgoel","name":null,"path":"/suhgoel","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/139457416?s=80&v=4"},"commit":{"message":"Bug#35846221: Assertion Failure in /mysql-8.0.34/sql/field.cc:7119\n\nProblem is due to missing implementation of\nItem_func_make_set::fix_after_pullout(), which makes this particular\nMAKE_SET function be regarded as const and may thus be evaluated\nduring resolving.\n\nFixed by implementing a proper fix_after_pullout() function.\n\nChange-Id: I7094869588ce4133c4a925e1a237a37866a5bb3c\n(cherry picked from commit a9f0b388adeef837811fdba2bce2e4ba5b06863b)","shortMessageHtmlLink":"Bug#35846221: Assertion Failure in /mysql-8.0.34/sql/field.cc:7119"}},{"before":"87307d4ddd88405117e3f1e51323836d57ab1f57","after":"824e2b4064053f7daf17d7f3f84b7a3ed92e5fb4","ref":"refs/heads/trunk","pushedAt":"2024-01-16T10:25:27.000Z","pushType":"push","commitsCount":1004,"pusher":{"login":"bjornmu","name":"Bjorn Munch","path":"/bjornmu","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8928500?s=80&v=4"},"commit":{"message":"Bug#36027494 Add mtr test for my_print_stacktrace\n\nAdd an mtr test which is only inteded to be run manually:\n ./mtr --no-check-testcases print_stacktrace\nInspect output in var/log/msqld.1.err\n\nChange-Id: Ia308592441df0e4a23a18c590df867a15882cbef","shortMessageHtmlLink":"Bug#36027494 Add mtr test for my_print_stacktrace"}},{"before":"7048edaaf901672717a8852fd10f7bf8ef43e0f9","after":"e3e76fccb086fefec0bdc72887a585497ff1283f","ref":"refs/heads/cluster-7.5","pushedAt":"2023-10-26T10:49:13.000Z","pushType":"push","commitsCount":27,"pusher":{"login":"suhgoel","name":null,"path":"/suhgoel","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/139457416?s=80&v=4"},"commit":{"message":"Update License Book\n\nApproved-by: Balasubramanian Kandasamy ","shortMessageHtmlLink":"Update License Book"}},{"before":"0ff3623e40e8101d50729bc190ce65cd09ecad07","after":"7a32c20f035013fffa0683ae8f347dac9d556994","ref":"refs/heads/cluster-7.6","pushedAt":"2023-10-26T06:00:12.000Z","pushType":"push","commitsCount":57,"pusher":{"login":"gipulla","name":"Gipson Pulla","path":"/gipulla","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/12998804?s=80&v=4"},"commit":{"message":"Update License Book\n\nApproved-by: Balasubramanian Kandasamy ","shortMessageHtmlLink":"Update License Book"}},{"before":"1c8608701b633cefa76fcb4ad985359f054e5290","after":"f7680e98b6bbe3500399fbad465d08a6b75d7a5c","ref":"refs/heads/5.7","pushedAt":"2023-10-25T13:47:57.000Z","pushType":"push","commitsCount":19,"pusher":{"login":"msprajap","name":"Manohar Prajapati","path":"/msprajap","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/113508753?s=80&v=4"},"commit":{"message":"Bug#35613791 - Upgrade from Wix 3.11 to 4.0.1 for Server/Cluster MSI builds\n\nWiX Toolset v3 is no longer actively maintained.\n\nChange-Id: I4b2e94ed51708a74ee3bbd82ffe97dcc4e7338d8\n(cherry picked from commit 4c13451d68768d8989a5ce3752b66ecb23460cda)","shortMessageHtmlLink":"Bug#35613791 - Upgrade from Wix 3.11 to 4.0.1 for Server/Cluster MSI …"}},{"before":"ea1efa9822d81044b726aab20c857d5e1b7e046a","after":"87307d4ddd88405117e3f1e51323836d57ab1f57","ref":"refs/heads/trunk","pushedAt":"2023-10-25T11:30:54.000Z","pushType":"push","commitsCount":847,"pusher":{"login":"bjornmu","name":"Bjorn Munch","path":"/bjornmu","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8928500?s=80&v=4"},"commit":{"message":"Bug#35897778: Upgrade to CURL 8.4.0 [remove old]\n\nRemove all old source files.\n\nChange-Id: Ib46488f2bee755920c21ef2c7768ffa0ab0a9be7","shortMessageHtmlLink":"Bug#35897778: Upgrade to CURL 8.4.0 [remove old]"}},{"before":"057f5c9509c6c9ea3ce3acdc619f3353c09e6ec6","after":"19feac3674e2ae254b3e7fa7e116fc64ac284d8d","ref":"refs/heads/8.0","pushedAt":"2023-10-25T09:38:15.000Z","pushType":"push","commitsCount":257,"pusher":{"login":"nawazn","name":"Nawaz N","path":"/nawazn","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/18396744?s=80&v=4"},"commit":{"message":"Bug#35897778: Upgrade to CURL 8.4.0 [remove old]\n\nRemove all old source files.\n\nChange-Id: Ifb43e581715178079b5a5a6e0ebcf201d2aae8f2","shortMessageHtmlLink":"Bug#35897778: Upgrade to CURL 8.4.0 [remove old]"}},{"before":"4b1025b49204516f29482527ebf5975dbe68bc48","after":"7048edaaf901672717a8852fd10f7bf8ef43e0f9","ref":"refs/heads/cluster-7.5","pushedAt":"2023-07-18T21:19:57.000Z","pushType":"push","commitsCount":44,"pusher":{"login":"tanydixi","name":"Tanya Dixit","path":"/tanydixi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/115533448?s=80&v=4"},"commit":{"message":"Update License Book\n\nApproved-by: Erlend Dahl \n(cherry picked from commit 6e3f106eaace16f20f9268f0c67203ac5c5e98a5)","shortMessageHtmlLink":"Update License Book"}},{"before":"fd71b7c3eb63850d1d94ed048b4417e16e8243e0","after":"0ff3623e40e8101d50729bc190ce65cd09ecad07","ref":"refs/heads/cluster-7.6","pushedAt":"2023-07-18T15:53:08.000Z","pushType":"push","commitsCount":76,"pusher":{"login":"msprajap","name":"Manohar Prajapati","path":"/msprajap","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/113508753?s=80&v=4"},"commit":{"message":"Update License Book\n\nApproved-by: Erlend Dahl \n(cherry picked from commit 3b764381c3711246e137f74756318711bcb8c431)","shortMessageHtmlLink":"Update License Book"}},{"before":"f091fb09ee1f971af19c39f715e78ef63354907b","after":"1c8608701b633cefa76fcb4ad985359f054e5290","ref":"refs/heads/5.7","pushedAt":"2023-07-18T15:16:19.000Z","pushType":"push","commitsCount":15,"pusher":{"login":"gipulla","name":"Gipson Pulla","path":"/gipulla","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/12998804?s=80&v=4"},"commit":{"message":"Update License Book\n\nApproved-by: Balasubramanian Kandasamy \n(cherry picked from commit eee3f0851c4942a11b2e55818d51484de016fcd4)","shortMessageHtmlLink":"Update License Book"}},{"before":null,"after":"ea1efa9822d81044b726aab20c857d5e1b7e046a","ref":"refs/heads/trunk","pushedAt":"2023-07-18T10:36:34.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"bjornmu","name":"Bjorn Munch","path":"/bjornmu","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8928500?s=80&v=4"},"commit":{"message":"Update License Book\n\nApproved-by: Erlend Dahl ","shortMessageHtmlLink":"Update License Book"}},{"before":"ea7087d885006918ad54458e7aad215b1650312c","after":"057f5c9509c6c9ea3ce3acdc619f3353c09e6ec6","ref":"refs/heads/8.0","pushedAt":"2023-07-18T09:52:00.000Z","pushType":"push","commitsCount":458,"pusher":{"login":"nawazn","name":"Nawaz N","path":"/nawazn","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/18396744?s=80&v=4"},"commit":{"message":"Bug#35231475: Segmentation fault in Item_ref::real_item with\n CTE query\n\nWhen transforming a subquery to a derived table, if a new field is added,\nit should increment the reference count. However, this was not done when\na view reference was replaced with a new field. This made the field\nreferenced to be deleted when it was wrongly concluded that the field is\nunused. Problem arises because the same underlying field is referenced by\nall the view references created for that field.\n\nFor a query like this one:\nWITH cte AS (SELECT\n (SELECT COUNT(f1) FROM t1),\n COUNT(dt.f2),\n dt.f3\n FROM (SELECT * FROM t1) AS dt)\nSELECT * FROM cte;\n\nit gets transformed into\n\nselect `derived_2_6`.`COUNT(f1)` AS `(SELECT COUNT(f1) FROM t1)`,\n `derived_2_5`.`COUNT(dt.f2)` AS `COUNT(dt.f2)`,\n `derived_2_5`.`Name_exp_1` AS `f3`\nfrom (select count(`test`.`t1`.`f2`) AS `COUNT(dt.f2)`,\n `test`.`t1`.`f3` AS `Name_exp_1`\n from `test`.`t1`) `derived_2_5`\nleft join (select count(`test`.`t1`.`f1`) AS `COUNT(f1)`\n from `test`.`t1`) `derived_2_6` on(true) where true;\n\nThe expression \"Name_exp_1\" is a view reference because the derived\ntable \"dt\" gets merged. When this is replaced with an \"Item_field\"\nduring subquery to derived transformation, we do not increment the\nreference count. Later, we see that the derived table \"cte\" which\nis resolved after the creation of the derived tables \"derived_2_5\"\nand \"derived_2_6\" gets merged. While deleting the un-used fields for\nthis derived table, we delete the field \"f3\" even though it is still\nused in the query.\n\nFix is to correctly increment the ref count for the new field created.\n\nChange-Id: I4035d86990e3cfb099144b7f304b864eb0451f5d","shortMessageHtmlLink":"Bug#35231475: Segmentation fault in Item_ref::real_item with"}},{"before":"555641087b52a9a759940b0ce71844bc008e6c59","after":null,"ref":"refs/heads/dependabot/pip/extra/libcbor/doc/source/tornado-6.3.2","pushedAt":"2023-06-25T01:54:16.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":"a27ad44c1fd9ccd4c563ea6c88cccca9c99567f4","after":null,"ref":"refs/heads/dependabot/pip/extra/libcbor/doc/source/requests-2.31.0","pushedAt":"2023-06-23T01:54:16.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":"b3a02db1128cff036018539b7a87d5319e72a695","after":null,"ref":"refs/heads/dependabot/pip/extra/libcbor/doc/source/flask-2.3.2","pushedAt":"2023-06-02T01:53:58.835Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":null,"after":"555641087b52a9a759940b0ce71844bc008e6c59","ref":"refs/heads/dependabot/pip/extra/libcbor/doc/source/tornado-6.3.2","pushedAt":"2023-05-25T17:49:45.229Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"Bump tornado from 6.0.4 to 6.3.2 in /extra/libcbor/doc/source\n\nBumps [tornado](https://github.com/tornadoweb/tornado) from 6.0.4 to 6.3.2.\n- [Changelog](https://github.com/tornadoweb/tornado/blob/master/docs/releases.rst)\n- [Commits](https://github.com/tornadoweb/tornado/compare/v6.0.4...v6.3.2)\n\n---\nupdated-dependencies:\n- dependency-name: tornado\n dependency-type: direct:production\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump tornado from 6.0.4 to 6.3.2 in /extra/libcbor/doc/source"}},{"before":null,"after":"a27ad44c1fd9ccd4c563ea6c88cccca9c99567f4","ref":"refs/heads/dependabot/pip/extra/libcbor/doc/source/requests-2.31.0","pushedAt":"2023-05-22T23:43:12.674Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"Bump requests from 2.23.0 to 2.31.0 in /extra/libcbor/doc/source\n\nBumps [requests](https://github.com/psf/requests) from 2.23.0 to 2.31.0.\n- [Release notes](https://github.com/psf/requests/releases)\n- [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md)\n- [Commits](https://github.com/psf/requests/compare/v2.23.0...v2.31.0)\n\n---\nupdated-dependencies:\n- dependency-name: requests\n dependency-type: direct:production\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump requests from 2.23.0 to 2.31.0 in /extra/libcbor/doc/source"}},{"before":null,"after":"b3a02db1128cff036018539b7a87d5319e72a695","ref":"refs/heads/dependabot/pip/extra/libcbor/doc/source/flask-2.3.2","pushedAt":"2023-05-01T21:28:42.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"Bump flask from 1.1.1 to 2.3.2 in /extra/libcbor/doc/source\n\nBumps [flask](https://github.com/pallets/flask) from 1.1.1 to 2.3.2.\n- [Release notes](https://github.com/pallets/flask/releases)\n- [Changelog](https://github.com/pallets/flask/blob/main/CHANGES.rst)\n- [Commits](https://github.com/pallets/flask/compare/1.1.1...2.3.2)\n\n---\nupdated-dependencies:\n- dependency-name: flask\n dependency-type: direct:production\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump flask from 1.1.1 to 2.3.2 in /extra/libcbor/doc/source"}},{"before":"551338af24195d0418eb3678b425c51bf901861b","after":null,"ref":"refs/heads/tmp","pushedAt":"2023-04-27T17:23:35.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"MyDanny","name":"Daniel Fischer","path":"/MyDanny","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8317900?s=80&v=4"}},{"before":"fbdaa4def30d269bc4de5b85de61de34b11c0afc","after":null,"ref":"refs/heads/tmp2","pushedAt":"2023-04-27T17:23:32.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"MyDanny","name":"Daniel Fischer","path":"/MyDanny","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8317900?s=80&v=4"}},{"before":"9c3574851594039248e0b80b48ca94938d7f1197","after":"fd71b7c3eb63850d1d94ed048b4417e16e8243e0","ref":"refs/heads/cluster-7.6","pushedAt":"2023-04-27T17:21:15.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"MyDanny","name":"Daniel Fischer","path":"/MyDanny","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8317900?s=80&v=4"},"commit":{"message":"Bug #34857411 : regression - slow connections/telnet block many other statements\nfor connect_timeout seconds, causing pileups\n\n[post-push-fix] Fixing the sporadically failing testcase on PB2\n\nApproved by Harin Vadodaria over Slack.","shortMessageHtmlLink":"Bug #34857411 : regression - slow connections/telnet block many other…"}},{"before":"2400ba6fbef26d63a2a57c8e0890324fc5615ce0","after":"4b1025b49204516f29482527ebf5975dbe68bc48","ref":"refs/heads/cluster-7.5","pushedAt":"2023-04-27T17:21:09.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"MyDanny","name":"Daniel Fischer","path":"/MyDanny","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8317900?s=80&v=4"},"commit":{"message":"Bug #34857411 : regression - slow connections/telnet block many other statements\nfor connect_timeout seconds, causing pileups\n\n[post-push-fix] Fixing the sporadically failing testcase on PB2\n\nApproved by Harin Vadodaria over Slack.","shortMessageHtmlLink":"Bug #34857411 : regression - slow connections/telnet block many other…"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEP8S72QA","startCursor":null,"endCursor":null}},"title":"Activity · mysql/mysql-server"}