File tree 3 files changed +10
-3
lines changed
3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " temporalio"
3
- version = " 1.3 .0"
3
+ version = " 1.4 .0"
4
4
description = " Temporal.io Python SDK"
5
5
license = " MIT"
6
6
authors = [
" Temporal Technologies Inc <[email protected] >" ]
Original file line number Diff line number Diff line change @@ -118,7 +118,11 @@ class LoggingConfig:
118
118
119
119
forwarding : Optional [LogForwardingConfig ] = None
120
120
"""If present, Core logger messages will be forwarded to a Python logger.
121
- See the :py:class:`LogForwardingConfig` docs for more info."""
121
+ See the :py:class:`LogForwardingConfig` docs for more info.
122
+
123
+ .. warning::
124
+ This API is experimental
125
+ """
122
126
123
127
default : ClassVar [LoggingConfig ]
124
128
"""Default logging configuration of Core WARN level and other ERROR
@@ -160,6 +164,9 @@ class LogForwardingConfig:
160
164
attribute which has arbitrary extra data from Core. By default a string
161
165
representation of this extra ``fields`` attribute is appended to the
162
166
message.
167
+
168
+ .. warning::
169
+ This API is experimental
163
170
"""
164
171
165
172
logger : logging .Logger
Original file line number Diff line number Diff line change 25
25
import temporalio .exceptions
26
26
import temporalio .runtime
27
27
28
- __version__ = "1.3 .0"
28
+ __version__ = "1.4 .0"
29
29
30
30
ServiceRequest = TypeVar ("ServiceRequest" , bound = google .protobuf .message .Message )
31
31
ServiceResponse = TypeVar ("ServiceResponse" , bound = google .protobuf .message .Message )
You can’t perform that action at this time.
0 commit comments