File tree 2 files changed +3
-1
lines changed
contrib/opencensus-ext-azure
opencensus/ext/azure/common
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 6
6
([ #1187 ] ( https://github.com/census-instrumentation/opencensus-python/pull/1187 ) )
7
7
- Modify metrics exporter to include setting export interval to 60s
8
8
([ #1193 ] ( https://github.com/census-instrumentation/opencensus-python/pull/1193 ) )
9
+ - Add str fallback to envelope serialization
10
+ ([ #1196 ] ( https://github.com/census-instrumentation/opencensus-python/pull/1196 ) )
9
11
10
12
## 1.1.8
11
13
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ def _transmit(self, envelopes):
113
113
endpoint += '/v2.1/track'
114
114
response = requests .post (
115
115
url = endpoint ,
116
- data = json .dumps (envelopes ),
116
+ data = json .dumps (envelopes , default = str ),
117
117
headers = headers ,
118
118
timeout = self .options .timeout ,
119
119
proxies = json .loads (self .options .proxies ),
You can’t perform that action at this time.
0 commit comments