-
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
Fix custom lookup serializer for class error [API-1669] #603
Fix custom lookup serializer for class error [API-1669] #603
Conversation
Codecov Report
@@ Coverage Diff @@
## master #603 +/- ##
==========================================
+ Coverage 96.47% 96.50% +0.02%
==========================================
Files 357 357
Lines 20510 20632 +122
==========================================
+ Hits 19787 19910 +123
+ Misses 723 722 -1
... and 24 files with indirect coverage changes 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
Added multimap put-all
…azelcast#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 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
…azelcast#604) Added code sample to show how Hazelcast works with Pandas DataFrames.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@fatihozer0 can you also take a look at the linter problems?
@fatihozer0 after you get the test failure fixed, we are ready to merge this |
I have committed the latest changes I have asked myself to include this PR and the JIRA task in the 5.2 release, which we will start testing today. |
closes #591