private static string ShortID()

in src/Middleware/Grpc/Server/RequestId.cs [34:40]


    private static string ShortID()
    {
        byte[] buffer = new byte[6];
        Random random = new Random();
        random.NextBytes(buffer);
        return Base64UrlEncode(buffer);
    }