From 614eca0bf5fb082b397ee5d6ea14587f2ba9822e Mon Sep 17 00:00:00 2001 From: DarkSky <25152247+darkskygit@users.noreply.github.com> Date: Wed, 11 Oct 2023 02:35:36 -0500 Subject: [PATCH] chore: disable gc (#547) * chore: temporarily disable gc * chore: bump jni --- libs/jwst-binding/jwst-jni/android/build.gradle | 2 +- libs/jwst-storage/src/storage/docs/utils.rs | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/libs/jwst-binding/jwst-jni/android/build.gradle b/libs/jwst-binding/jwst-jni/android/build.gradle index e8b4a244..8b9805ec 100644 --- a/libs/jwst-binding/jwst-jni/android/build.gradle +++ b/libs/jwst-binding/jwst-jni/android/build.gradle @@ -117,7 +117,7 @@ publishing { release(MavenPublication) { groupId = 'com.toeverything' artifactId = 'octobase' - version = '0.2.5' + version = '0.2.6' afterEvaluate { from components.release diff --git a/libs/jwst-storage/src/storage/docs/utils.rs b/libs/jwst-storage/src/storage/docs/utils.rs index 93e1010f..3a7efa7c 100644 --- a/libs/jwst-storage/src/storage/docs/utils.rs +++ b/libs/jwst-storage/src/storage/docs/utils.rs @@ -12,7 +12,8 @@ pub fn migrate_update(update_records: Vec<::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();