From 4507f3599992b2263cc250ad8e5bf05c200c5cb3 Mon Sep 17 00:00:00 2001 From: Roger Ng Date: Wed, 4 Dec 2024 16:54:10 +0000 Subject: [PATCH] Update conformance codelab instructions (#375) --- cmd/conformance/README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cmd/conformance/README.md b/cmd/conformance/README.md index 74293cfd..ecc15d04 100644 --- a/cmd/conformance/README.md +++ b/cmd/conformance/README.md @@ -38,10 +38,11 @@ curl -d 'two!' -H "Content-Type: application/data" -X POST ${WRITE_URL}add & curl -d 'three!' -H "Content-Type: application/data" -X POST ${WRITE_URL}add & wait -# Check that the checkpoint is of the correct size +# Check that the checkpoint is of the correct size (i.e. 3). +# If the checkpoint size is zero, this is expected. It may take a second to integrate the entries and publish the checkpoint. curl -s ${READ_URL}checkpoint -# Look at the leaves. Piping into xxd to reveal the leaf sizes. +# Look at the leaves after confirming the checkpoint size. Piping into xxd to reveal the leaf sizes. curl -s ${READ_URL}tile/entries/000.p/3 | xxd ```