-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add put_all() to MultiMap [API-1235] #600
Conversation
Hi Nevzat 👋 What is your Java version? I got the same error once while trying to run tests with Java>8, maybe it's related. |
Yes, probably Nezvat is on a newer JDK. The Nashorn Engine we use for these scripting tasks is removed in JDK 15 https://openjdk.org/jeps/372 |
...ration/backward_compatible/serialization/compact_compatibility/compact_compatibility_test.py
Outdated
Show resolved
Hide resolved
...ration/backward_compatible/serialization/compact_compatibility/compact_compatibility_test.py
Outdated
Show resolved
Hide resolved
Hi Mehmet! Yes, you were right. There was no official support to Apple Silicon for java 8 but I just updated with Azul's one. It is not official but working fine. Thanks for the suggestion! |
Codecov Report
@@ Coverage Diff @@
## master #600 +/- ##
=======================================
Coverage 96.53% 96.53%
=======================================
Files 357 357
Lines 20712 20712
=======================================
Hits 19994 19994
Misses 718 718 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
@yuce since this is now a community PR, I have to run the test separately but here are the results https://github.com/hazelcast/hazelcast-python-client/actions/runs/3781913737, they passed. Since we cannot relate this run with the checks in this PR, a force merge is required. Can you do that please? |
* fix custom lookup serializer for class error * change __subclasses__ to __mro__ * add test for custom global serialization * Add put_all() to MultiMap [API-1235] (#600) Added multimap put-all * Bump hazelcast in /examples/paging-predicate/member-with-comparator (#602) Bumps [hazelcast](https://github.com/hazelcast/hazelcast) from 5.1 to 5.1.3. - [Release notes](https://github.com/hazelcast/hazelcast/releases) - [Commits](hazelcast/hazelcast@v5.1...v5.1.3) --- updated-dependencies: - dependency-name: com.hazelcast:hazelcast dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Convert `Config` classes to public API [API-1280] (#521) * Convert `Config` classes to public API These were converted into private classes during the 4.0 migration, as we were only supporting keyword arguments for the client configuration. However, that led to a poor user experience, as we had to use `**kwargs`, instead of listing all the configuration elements in the client constructor. (IDEs become painfully slow once we list all keyword arguments, as there are too many of them) The solution to this problem is to make the Config classes public API and make the client able to use it directly. ```python config = Config() config.cluster_name = "dev2" client = HazelcastClient(config) ``` We provide full type hints for config elements. * bump the client version used in tests * address review comments * shutdown clients in teardown method * Add code sample to show how Hazelcast works with Pandas DataFrames. (#604) Added code sample to show how Hazelcast works with Pandas DataFrames. * fix the problems of added test * test after updating branch * test after updating branch * test after updating branch * add another test * fix some typos and unnecessary parts * fix the test * fix the test * Update custom_global_serialization_test.py --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: Nevzat Seferoglu <nevzatseferoglu@gmail.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Metin Dumandag <metin@hazelcast.com> Co-authored-by: Meltem Tokgöz <meltemtgz@gmail.com> Co-authored-by: Metin Dumandag <29387993+mdumandag@users.noreply.github.com>
@mdumandag