From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS16276 188.165.0.0/16 X-Spam-Status: No, score=-3.4 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_DNSWL_HI, RCVD_IN_MSPIKE_H4,RCVD_IN_MSPIKE_WL,SPF_HELO_NONE,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from out2.migadu.com (out2.migadu.com [188.165.223.204]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id E4BC41F8C6 for ; Sun, 27 Jun 2021 20:28:43 +0000 (UTC) X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kyleam.com; s=key1; t=1624825719; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type; bh=7ZQEVE/yej2wNXtglX7l+TIxJRVkPus3rmLQmaEp3pc=; b=SWQ8S86S4RGyOYpGDHmQI1MPSuK1oU3t0rQRItdXwA8gaamy+GbQNWTXrcL9Jom8MmJqeu LBsnW5TKHxsNO8Y1utaaArhZWbXvD+pS1tvzM5jWsu5NTVetjf7RJ8LqL/Nv5Gd63MUwtM jR26tPCSwssqTjvT8fn0qLmavnWac4g2+TK0l+1ItzvygfVQphwNMXz3Df/wCes4gBEWuw i9kHFfqnIXWem8CA0i/j6d2IuhKV8gC8jFo1TXz4D1k29gD8GD4LEuirMlwVr1oiBD/08W yOf+IxGJbXsV9Fa2nSp26ZB0vsHVDJ4ZnfqAzepsDwM33NusaG0Ohedy1Zj5uQ== From: Kyle Meyer To: meta@public-inbox.org Subject: empty /manifest.js.gz response as of 520be116 Date: Sun, 27 Jun 2021 16:28:37 -0400 Message-ID: <87fsx3128a.fsf@kyleam.com> MIME-Version: 1.0 Content-Type: text/plain X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: kyle@kyleam.com List-Id: I recently upgraded a server from 08b649735 to 5860b498a and noticed that grok-pull didn't bring in any updates. It looks like what's going on is that the top-level /manifest.js.gz endpoint is now coming up empty. A minimal example on 5860b498a: $ git clone --mirror https://try.public-inbox.org/test test $ export PI_CONFIG="$PWD/config" $ public-inbox-init -V1 test test/ \ http://localhost:8080/test test@public-inbox.org $ public-inbox-index -v test $ public-inbox-httpd & $ curl -fsS http://localhost:8080/manifest.js.gz | zcat | jq {} On 08b649735, the output is { "/test": { "reference": null, ... } } Bisecting with the script below points to 520be116 (www_listing: start updating for pagination + search, 2021-06-23). --8<---------------cut here---------------start------------->8--- #!/bin/sh perl Makefile.PL && make && sudo make install || exit 125 # Local clone of https://try.public-inbox.org/test pi_test=/tmp/pi-test cd "$(mktemp -d "${TMPDIR:-/tmp}"/pi-XXXXXXX)" export PI_CONFIG="$PWD/config" git clone --mirror "$pi_test" test public-inbox-init -V1 test test/ \ http://localhost:8080/test test@public-inbox.org public-inbox-index -v test trap 'trap - TERM && pkill -P $$' INT TERM EXIT public-inbox-httpd & sleep 1 curl -fsS http://localhost:8080/manifest.js.gz | zcat | jq -e '.["/test"]' --8<---------------cut here---------------end--------------->8---