Skip to content

Commit

Permalink
chore: disable gc (#547)
Browse files Browse the repository at this point in the history
* chore: temporarily disable gc

* chore: bump jni
  • Loading branch information
darkskygit authored Oct 11, 2023
1 parent a342180 commit 614eca0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libs/jwst-binding/jwst-jni/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ publishing {
release(MavenPublication) {
groupId = 'com.toeverything'
artifactId = 'octobase'
version = '0.2.5'
version = '0.2.6'

afterEvaluate {
from components.release
Expand Down
3 changes: 2 additions & 1 deletion libs/jwst-storage/src/storage/docs/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ pub fn migrate_update(update_records: Vec<<Docs as EntityTrait>::Model>, mut doc
warn!("update {} merge failed, skip it: {:?}", id, e);
}
}
doc.gc()?;
// temporarily disable due to the multiple client issue
// doc.gc()?;

doc.publisher.start();

Expand Down

1 comment on commit 614eca0

@vercel
Copy link

@vercel vercel bot commented on 614eca0 Oct 11, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.