Skip to content

Commit

Permalink
Adding temp. solution for issue #3651
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenneth Geisshirt committed Jan 18, 2017
1 parent 461c157 commit 81cecb8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* Activated Realm's annotation processor on connectedTest when the project is using kapt (#4008).
* Fixed bug, preventing Sync client to renew the access token (#4038) (#4039).
* Fixed "too many open files" issue (#4002).
* Temporarily solution for #3561.

### Object Server API Changes (In Beta)

Expand Down
2 changes: 1 addition & 1 deletion realm/realm-library/src/main/cpp/object-store
Submodule object-store updated 44 files
+1 −1 Dockerfile
+28 −2 Jenkinsfile
+1 −1 dependencies.list
+5 −0 src/CMakeLists.txt
+4 −0 src/binding_context.hpp
+4 −1 src/collection_notifications.hpp
+119 −39 src/impl/collection_change_builder.cpp
+8 −1 src/impl/collection_change_builder.hpp
+13 −1 src/impl/collection_notifier.cpp
+5 −13 src/impl/collection_notifier.hpp
+98 −0 src/impl/object_notifier.cpp
+53 −0 src/impl/object_notifier.hpp
+12 −3 src/impl/realm_coordinator.cpp
+5 −0 src/impl/realm_coordinator.hpp
+4 −0 src/impl/results_notifier.cpp
+298 −396 src/impl/transact_log_handler.cpp
+1 −3 src/impl/transact_log_handler.hpp
+0 −1 src/index_set.hpp
+1 −1 src/list.cpp
+1 −1 src/list.hpp
+45 −0 src/object.cpp
+93 −0 src/object.hpp
+314 −354 src/object_accessor.hpp
+13 −8 src/object_store.cpp
+3 −3 src/results.cpp
+1 −1 src/results.hpp
+4 −0 src/shared_realm.cpp
+7 −6 src/shared_realm.hpp
+18 −12 src/sync/sync_session.cpp
+40 −2 src/sync/sync_session.hpp
+4 −0 src/thread_safe_reference.cpp
+15 −14 src/thread_safe_reference.hpp
+124 −55 src/util/android/event_loop_signal.hpp
+1 −0 tests/CMakeLists.txt
+105 −10 tests/collection_change_indices.cpp
+19 −0 tests/list.cpp
+178 −0 tests/object.cpp
+1 −0 tests/realm.cpp
+31 −0 tests/results.cpp
+494 −3 tests/sync/session.cpp
+4 −3 tests/thread_safe_reference.cpp
+155 −9 tests/transaction_log_parsing.cpp
+5 −0 tests/util/index_helpers.hpp
+2 −1 tests/util/test_file.cpp

0 comments on commit 81cecb8

Please sign in to comment.