Update dependencies (#5518)

This commit is contained in:
hongming
2023-02-12 23:09:20 +08:00
committed by GitHub
parent d3b35fb2da
commit a979342f56
1486 changed files with 126660 additions and 71128 deletions

View File

@@ -11,9 +11,9 @@ import (
type uuidCachingKey string
func builtinUUIDRFC4122(bctx BuiltinContext, args []*ast.Term, iter func(*ast.Term) error) error {
func builtinUUIDRFC4122(bctx BuiltinContext, operands []*ast.Term, iter func(*ast.Term) error) error {
var key = uuidCachingKey(args[0].Value.String())
var key = uuidCachingKey(operands[0].Value.String())
val, ok := bctx.Cache.Get(key)
if ok {