fixup compile
Some checks failed
lint / lint (pull_request) Successful in 57s
pr / test (pull_request) Failing after 1m7s

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
2023-10-15 00:12:28 +03:00
parent a94b4285f9
commit a63e5b11a9
6 changed files with 28 additions and 28 deletions

View File

@@ -71,7 +71,7 @@ func New(opts ...Option) (string, error) {
func Must(opts ...Option) string {
id, err := New(opts...)
if err != nil {
logger.Fatal(context.TODO(), err)
logger.Fatal(context.TODO(), err.Error())
}
return id
}