mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-30 03:34:29 +01:00
Gopkg.lock says it's "dbea6f2bd41658b84b00417ceefa416b979cbf10"
but it is actually "5017d4e9a9cf2d4381db99eacd9baf84b95bfb14".
We need to make sure Gopkg.lock does not lie otherwise `dep ensure`
would really fetch the locked revision and it causes build failure
due to API changes.
Introduced by: 76d9db3e0b (vendor: Add github.com/gogo/protobuf).
While at it, constraint containerd/cgroups to a working revision.
Fixes: #1447
Signed-off-by: Peng Tao <bergwolf@hyper.sh>
35 lines
847 B
Go
35 lines
847 B
Go
package wclayer
|
|
|
|
import (
|
|
"github.com/Microsoft/hcsshim/internal/guid"
|
|
"github.com/Microsoft/hcsshim/internal/hcserror"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
// NameToGuid converts the given string into a GUID using the algorithm in the
|
|
// Host Compute Service, ensuring GUIDs generated with the same string are common
|
|
// across all clients.
|
|
func NameToGuid(name string) (id guid.GUID, err error) {
|
|
title := "hcsshim::NameToGuid"
|
|
fields := logrus.Fields{
|
|
"name": name,
|
|
}
|
|
logrus.WithFields(fields).Debug(title)
|
|
defer func() {
|
|
if err != nil {
|
|
fields[logrus.ErrorKey] = err
|
|
logrus.WithFields(fields).Error(err)
|
|
} else {
|
|
logrus.WithFields(fields).Debug(title + " - succeeded")
|
|
}
|
|
}()
|
|
|
|
err = nameToGuid(name, &id)
|
|
if err != nil {
|
|
err = hcserror.New(err, title+" - failed", "")
|
|
return
|
|
}
|
|
fields["guid"] = id.String()
|
|
return
|
|
}
|