Skip to content

Commit

Permalink
Merge pull request #19035 from taosdata/fix/TD-21344-main
Browse files Browse the repository at this point in the history
fix(meta/snap): use os memory instead of cache page replacement
  • Loading branch information
guanshengliang authored Dec 20, 2022
2 parents 7c3d8e4 + ba58185 commit f98a932
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/dnode/vnode/src/meta/metaSnapshot.c
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ int32_t metaSnapWriterOpen(SMeta* pMeta, int64_t sver, int64_t ever, SMetaSnapWr
pWriter->sver = sver;
pWriter->ever = ever;

metaBegin(pMeta, META_BEGIN_HEAP_NIL);
metaBegin(pMeta, META_BEGIN_HEAP_OS);

*ppWriter = pWriter;
return code;
Expand Down

0 comments on commit f98a932

Please sign in to comment.