diff --git a/internal/uid/uid.go b/internal/uid/uid.go index 71f0cb397..63ce514de 100644 --- a/internal/uid/uid.go +++ b/internal/uid/uid.go @@ -12,7 +12,7 @@ import ( // // See: http://en.wikipedia.org/wiki/UUID#Random_UUID_probability_of_duplicates func Uid() string { - id := make([]byte, 16) + id := make([]byte, 20) _, err := io.ReadFull(rand.Reader, id) if err != nil { // This is probably an appropriate way to handle errors from our source