Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1tqUuZ-005pvQ-Na for pgsql-hackers@arkaria.postgresql.org; Fri, 07 Mar 2025 10:26:36 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.94.2) (envelope-from ) id 1tqUuX-00FYBQ-Ii for pgsql-hackers@arkaria.postgresql.org; Fri, 07 Mar 2025 10:26:33 +0000 Received: from magus.postgresql.org ([2a02:c0:301:0:ffff::29]) by malur.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1tqUuX-00FYAm-8D for pgsql-hackers@lists.postgresql.org; Fri, 07 Mar 2025 10:26:33 +0000 Received: from smtp.outgoing.loopia.se ([93.188.3.37]) by magus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1tqUuT-001Tsn-2u for pgsql-hackers@lists.postgresql.org; Fri, 07 Mar 2025 10:26:32 +0000 Received: from s807.loopia.se (localhost [127.0.0.1]) by s807.loopia.se (Postfix) with ESMTP id CDFD12C61F1 for ; Fri, 07 Mar 2025 11:26:30 +0100 (CET) Received: from s979.loopia.se (unknown [172.22.191.5]) by s807.loopia.se (Postfix) with ESMTP id B94332C7C23 for ; Fri, 07 Mar 2025 11:26:30 +0100 (CET) Received: from s471.loopia.se (unknown [172.22.191.6]) by s979.loopia.se (Postfix) with ESMTP id B83D610BC458 for ; Fri, 07 Mar 2025 11:26:30 +0100 (CET) X-Virus-Scanned: amavisd-new at amavis.loopia.se X-Spam-Flag: NO X-Spam-Score: -1.2 X-Spam-Level: X-Spam-Status: No, score=-1.2 tagged_above=-999 required=6.2 tests=[ALL_TRUSTED=-1, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1] autolearn=disabled Authentication-Results: s471.loopia.se (amavisd-new); dkim=pass (2048-bit key) header.d=proxel.se Received: from s899.loopia.se ([172.22.191.5]) by s471.loopia.se (s471.loopia.se [172.22.190.35]) (amavisd-new, port 10024) with LMTP id pfT4wEyldHV8 for ; Fri, 7 Mar 2025 11:26:30 +0100 (CET) X-Loopia-Auth: user X-Loopia-User: andreas@proxel.se X-Loopia-Originating-IP: 147.28.75.140 Received: from [192.168.0.121] (customer-147-28-75-140.stosn.net [147.28.75.140]) (Authenticated sender: andreas@proxel.se) by s899.loopia.se (Postfix) with ESMTPSA id 310962C8BA62 for ; Fri, 07 Mar 2025 11:26:30 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=proxel.se; s=loopiadkim1707418970; t=1741343190; bh=TCkbU3Sw1yenaB+zOOrqLZRvGY9hPtQYEE4EOp8HbmU=; h=Date:Subject:To:References:From:In-Reply-To; b=FZY7YA5nOs1RWE+8IHIkSRq/q113Qb1DbPn94Ffy57Vh6ErROSnUBAVp0zd9XgGcr RHMqdwcMClNt+26IjSAqHOh2x19wnsJhvjeSm9Mt1VOQ8ecOHfQsHnTPaotzf/wErJ JgSeJZkuGw2lZsiPtHzDcdkzwp3/mIri6b5bOkj3EcihIG1qmnZcgGHl4lu7MWeKD5 Lrip6kBUMvy6Amb9b4S7P17oz2elisTTLicWspwq6zRB7aV3s4qEECH1NPsaTQH9dB 86FjnlF4SJ4CCnjFoy7kN2hNmm66kNHfpvaylcP3DWsHf7vh3Hjau3AblKMvC5r5b5 hurg5qHWdaw2A== Message-ID: Date: Fri, 7 Mar 2025 11:26:29 +0100 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: Commitfest app release on Feb 17 with many improvements To: pgsql-hackers@lists.postgresql.org References: <703819.1741281033@sss.pgh.pa.us> Content-Language: en-US From: Andreas Karlsson In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk On 3/7/25 12:48 AM, Jelte Fennema-Nio wrote: > Okay, I went for the approach of just trying everything until one > works. Starting with "git am", then patch(1), and as a final attempt > "git apply". Patch 5272 applies correctly now. I've removed any > backoff caused by repeated failures for all existing patches, so all > should be retried in the next ~48 hours. Out of curiosity: do you track which method works? I would expect everything to be applied with either git am or patch which can be applied with git apply making git apply technically unnecessary. Andreas