File tree 2 files changed +6
-1
lines changed 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 86
86
handled while the client is not connected. In particular, if the client is not connected, then any operation
87
87
that would be failed on disconnect (according to these rules) will also be rejected.
88
88
89
+ **topic_aliasing_options** (:class:`awscrt.mqtt5.TopicAliasingOptions`): Configuration options for how the client
90
+ should use the topic aliasing features of MQTT5
91
+
89
92
**retry_jitter_mode** (:class:`awscrt.mqtt5.ExponentialBackoffJitterMode`): How the reconnect delay is modified
90
93
in order to smooth out the distribution of reconnection attempt timepoints for a large set of reconnecting
91
94
clients.
@@ -288,6 +291,8 @@ def _builder(
288
291
client_options .ack_timeout_sec = _get (kwargs , 'ack_timeout_sec' )
289
292
if client_options .websocket_handshake_transform is None :
290
293
client_options .websocket_handshake_transform = websocket_handshake_transform
294
+ if client_options .topic_aliasing_options is None :
295
+ client_options .topic_aliasing_options = _get (kwargs , 'topic_aliasing_options' )
291
296
292
297
# Connect Options
293
298
if client_options .connect_options .client_id is None :
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ def _load_version():
40
40
"Operating System :: OS Independent" ,
41
41
],
42
42
install_requires = [
43
- 'awscrt==0.19.6 ' ,
43
+ 'awscrt==0.19.16 ' ,
44
44
],
45
45
python_requires = '>=3.7' ,
46
46
)
You can’t perform that action at this time.
0 commit comments