Re: [netconf] draft-ietf-netconf-netconf-client-server-28 anchor-time

Kent Watsen <kent@watsen.net> Fri, 17 March 2023 02:10 UTC

Return-Path: <01000186ed554eb9-90dcdbf4-7118-4537-b201-b70089758b2d-000000@amazonses.watsen.net>
X-Original-To: netconf@ietfa.amsl.com
Delivered-To: netconf@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 043E8C13612C for <netconf@ietfa.amsl.com>; Thu, 16 Mar 2023 19:10:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.897
X-Spam-Level:
X-Spam-Status: No, score=-6.897 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-0.001, RCVD_IN_ZEN_BLOCKED_OPENDNS=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001, URIBL_DBL_BLOCKED_OPENDNS=0.001, URIBL_ZEN_BLOCKED_OPENDNS=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=amazonses.com
Received: from mail.ietf.org ([50.223.129.194]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id OwR-0BPkVghr for <netconf@ietfa.amsl.com>; Thu, 16 Mar 2023 19:10:38 -0700 (PDT)
Received: from a8-88.smtp-out.amazonses.com (a8-88.smtp-out.amazonses.com [54.240.8.88]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 23862C15155E for <netconf@ietf.org>; Thu, 16 Mar 2023 19:10:38 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/simple; s=224i4yxa5dv7c2xz3womw6peuasteono; d=amazonses.com; t=1679019037; h=Content-Type:Mime-Version:Subject:From:In-Reply-To:Date:Cc:Content-Transfer-Encoding:Message-Id:References:To:Feedback-ID; bh=dtX7GD07kvfQ7doFl+IvgLFNSzz7HQfyBvpOq6GHEkM=; b=d5kcJAfVi2OW/Vy4fd1HVvzH7nsz9LWU/rmjX01qaJOdN/LGz9trdWKeNnxCa87H HJBHUI9C8eWAiGkKIx7mQodWy64ffmWrVX0FKWN3zbsn5I9AjjDy85o9jUjrm5Iji45 komXmcYb0YWmhjoF9NXZpmTWm0DjkeQpcnvgaa1c=
Content-Type: text/plain; charset="utf-8"
Mime-Version: 1.0 (Mac OS X Mail 16.0 \(3731.400.51.1.1\))
From: Kent Watsen <kent@watsen.net>
In-Reply-To: <EAB1CB54-885B-4AA0-88D6-3B5FE61FD98A@tzi.org>
Date: Fri, 17 Mar 2023 02:10:36 +0000
Cc: Michal Vasko <mvasko@cesnet.cz>, "netconf@ietf.org" <netconf@ietf.org>
Content-Transfer-Encoding: quoted-printable
Message-ID: <01000186ed554eb9-90dcdbf4-7118-4537-b201-b70089758b2d-000000@email.amazonses.com>
References: <5f209be0-5b17-4a02-f07a-8ff05a586fa3@cesnet.cz> <EAB1CB54-885B-4AA0-88D6-3B5FE61FD98A@tzi.org>
To: Carsten Bormann <cabo@tzi.org>
X-Mailer: Apple Mail (2.3731.400.51.1.1)
Feedback-ID: 1.us-east-1.DKmIRZFhhsBhtmFMNikgwZUWVrODEw9qVcPhqJEI2DA=:AmazonSES
X-SES-Outgoing: 2023.03.17-54.240.8.88
Archived-At: <https://mailarchive.ietf.org/arch/msg/netconf/e8UsOEQSB2e_UTqLjm0EyW6s6dk>
Subject: Re: [netconf] draft-ietf-netconf-netconf-client-server-28 anchor-time
X-BeenThere: netconf@ietf.org
X-Mailman-Version: 2.1.39
Precedence: list
List-Id: NETCONF WG list <netconf.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/netconf>, <mailto:netconf-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/netconf/>
List-Post: <mailto:netconf@ietf.org>
List-Help: <mailto:netconf-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/netconf>, <mailto:netconf-request@ietf.org?subject=subscribe>
X-List-Received-Date: Fri, 17 Mar 2023 02:10:42 -0000

Good point.

\d{4} is in RPC 6991, but rfc6991-bis moves to using [0-9]{4}

I'll update the netconf-client-server and restconf-client-server drafts accordingly.

K.



> On Mar 16, 2023, at 3:48 PM, Carsten Bormann <cabo@tzi.org> wrote:
> 
> On 2023-03-15, at 09:14, Michal Vasko <mvasko@cesnet.cz> wrote:
>> 
>> \d{4}
> 
> You may want to avoid using \d — it means something different from what you may think.
> [0-9] is a replacement that actually means what you want here.
> 
> Grüße, Carsten
> 
> _______________________________________________
> netconf mailing list
> netconf@ietf.org
> https://www.ietf.org/mailman/listinfo/netconf