From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id D4E4E439A8; Tue, 23 Jan 2024 14:46:47 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id AD607402C5; Tue, 23 Jan 2024 14:46:47 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mails.dpdk.org (Postfix) with ESMTP id 8F5D4400D7 for ; Tue, 23 Jan 2024 14:46:45 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1706017604; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=MD/SVexAh2kY5BXYgQ+dIlsWjHAoHmRD5EpxVBGvOEg=; b=Ck2Pc4b6V8qoZqt6pWflm2oDA5BMAbzLMRQMUEgWaj0v6vyCQzMPv7LwqXOJFNSgCejTf0 VFToMy6EXlYf6TyMHkR5NIGC+jtNSUssW8FKKo36dPamu3mdEsrWRGy5DMPsOme0gmBGrr ztyTQhs/42SbcSr/P6BTPSgnyO+cOAs= Received: from mimecast-mx02.redhat.com (mx-ext.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-193-D6-Jz1kdMzOr3C3UIcH8nA-1; Tue, 23 Jan 2024 08:46:43 -0500 X-MC-Unique: D6-Jz1kdMzOr3C3UIcH8nA-1 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.rdu2.redhat.com [10.11.54.7]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id DF06129AB3F9; Tue, 23 Jan 2024 13:46:42 +0000 (UTC) Received: from RHTPC1VM0NT (unknown [10.22.33.141]) by smtp.corp.redhat.com (Postfix) with ESMTPS id A28ED1C060AF; Tue, 23 Jan 2024 13:46:42 +0000 (UTC) From: Aaron Conole To: ci@dpdk.org Cc: Michael Santana , Ilya Maximets , Jeremy Kerr Subject: Re: [PATCH v3 0/2] Reduced checks API usage References: <20240122234034.3883647-1-aconole@redhat.com> Date: Tue, 23 Jan 2024 08:46:42 -0500 In-Reply-To: <20240122234034.3883647-1-aconole@redhat.com> (Aaron Conole's message of "Mon, 22 Jan 2024 18:40:32 -0500") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.3 (gnu/linux) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.11.54.7 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain X-BeenThere: ci@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK CI discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: ci-bounces@dpdk.org Aaron Conole writes: > As Jeremy Kerr reports, we aren't being as nice as we should be w.r.t. > API usage - especially around the checks API reporting. While the > initial version *worked* for what we wanted, we are heavily using the > checks API, especially when we don't need to be. > > This series should reduce the number of API calls we make into > patchwork with respect to the checks API specifically. > > Additionally, we add a simple token to identify that the requests > coming in are from a patchwork robot project (so at least a site > admin can start identifying who is actually sending the requests). > > Aaron Conole (2): > treewide: Add a User Agent for CURL requests > post_pw: Store submitted checks locally as well Series applied. Thanks Ilya and Michael for quick turnaround for reviews.