Commit 2cdf06c8 authored by Steven Allen's avatar Steven Allen

update go.uuid

The new version can return errors however, we don't want to deal with that...
parent 879a962c
......@@ -31,8 +31,12 @@ func Error(e error) logging.Loggable {
}
func Uuid(key string) logging.Metadata {
ids := "#UUID-ERROR#"
if id, err := uuid.NewV4(); err != nil {
ids = id.String()
}
return logging.Metadata{
key: uuid.NewV4().String(),
key: ids,
}
}
......
......@@ -27,9 +27,9 @@
},
{
"author": "satori",
"hash": "QmcyaFHbyiZfoX5GTpcqqCPYmbjYNAhRDekXSJPFHdYNSV",
"hash": "QmcBWojPoNh4qm7zvv4qiepvCnnc7ALS9qcp7TNwwxT1gT",
"name": "go.uuid",
"version": "1.0.0"
"version": "1.1.0"
}
],
"gxVersion": "0.4.0",
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment