File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
tests/integration/backward_compatible/proxy Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 72
72
# built documents.
73
73
#
74
74
# The short X.Y version.
75
- version = "4.2"
75
+ version = "4.2.1 "
76
76
# The full version, including alpha/beta/rc tags.
77
- release = "4.2"
77
+ release = "4.2.1 "
78
78
79
79
autodoc_member_order = "bysource"
80
80
autoclass_content = "both"
Original file line number Diff line number Diff line change 1
- __version__ = "4.2"
1
+ __version__ = "4.2.1 "
2
2
3
3
# Set the default handler to "hazelcast" loggers
4
4
# to avoid "No handlers could be found" warnings.
Original file line number Diff line number Diff line change 17
17
fill_map ,
18
18
is_server_version_older_than ,
19
19
get_current_timestamp ,
20
+ mark_client_version_at_least ,
20
21
)
21
22
from hazelcast import six
22
23
from hazelcast .six .moves import range
@@ -403,6 +404,10 @@ def test_put_get(self):
403
404
self .assertEqual (self .map .get ("key" ), "value" )
404
405
405
406
def test_put_get_large_payload (self ):
407
+ # The fix for reading large payloads is introduced in 4.2.1
408
+ # See https://github.com/hazelcast/hazelcast-python-client/pull/436
409
+ mark_client_version_at_least (self , "4.2.1" )
410
+
406
411
payload = bytearray (os .urandom (16 * 1024 * 1024 ))
407
412
start = get_current_timestamp ()
408
413
self .assertIsNone (self .map .put ("key" , payload ))
You can’t perform that action at this time.
0 commit comments