update to latest micro
Some checks failed
build / test (push) Failing after 9s
build / lint (push) Failing after 10s
codeql / analyze (go) (push) Failing after 10s

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
2024-09-17 13:09:10 +03:00
parent d7ffcd19f8
commit 89b41364c3
3 changed files with 6 additions and 18 deletions

View File

@@ -7,7 +7,6 @@ import (
"os"
"reflect"
"go.unistack.org/micro/v3/codec"
"go.unistack.org/micro/v3/config"
"go.unistack.org/micro/v3/util/jitter"
rutil "go.unistack.org/micro/v3/util/reflect"
@@ -44,7 +43,7 @@ func (w *fileWatcher) run() {
return
}
var buf []byte
buf, err = ioutil.ReadAll(io.LimitReader(fp, int64(codec.DefaultMaxMsgSize)))
buf, err = ioutil.ReadAll(io.LimitReader(fp, MaxFileSize))
if err == nil {
err = w.opts.Codec.Unmarshal(buf, dst)
}