[#570] Fix writecache type constant copy-pasta bug

Signed-off-by: Alejandro Lopez <a.lopez@yadro.com>
This commit is contained in:
Alejandro Lopez 2023-08-07 12:05:00 +03:00
parent 1a0cb0f34a
commit 5bbfebba2d

View file

@ -728,7 +728,7 @@ func (c *cfg) getWriteCacheOpts(shCfg shardCfg) writecacheconfig.Options {
writecachebbolt.WithLogger(c.log), writecachebbolt.WithLogger(c.log),
) )
case writecacheconfig.TypeBadger: case writecacheconfig.TypeBadger:
writeCacheOpts.Type = writecacheconfig.TypeBBolt writeCacheOpts.Type = writecacheconfig.TypeBadger
writeCacheOpts.BadgerOptions = append(writeCacheOpts.BadgerOptions, writeCacheOpts.BadgerOptions = append(writeCacheOpts.BadgerOptions,
writecachebadger.WithPath(wcRead.path), writecachebadger.WithPath(wcRead.path),
writecachebadger.WithMaxObjectSize(wcRead.maxObjSize), writecachebadger.WithMaxObjectSize(wcRead.maxObjSize),