File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
3
## [ Unreleased]
4
+ ### Fixed
5
+ - Python 3.7 support, by @HardNorth
6
+ - Launch UUID attribute for AIO clients, by @HardNorth
4
7
5
8
## [ 5.5.2]
6
9
### Fixed
Original file line number Diff line number Diff line change @@ -259,7 +259,7 @@ async def start_launch(self,
259
259
260
260
if not self ._skip_analytics :
261
261
stat_coro = async_send_event ('start_launch' , * agent_name_version (attributes ))
262
- self .__stat_task = asyncio .create_task (stat_coro , name = 'Statistics update' )
262
+ self .__stat_task = asyncio .create_task (stat_coro )
263
263
264
264
launch_uuid = await response .id
265
265
logger .debug (f'start_launch - ID: { launch_uuid } ' )
@@ -675,8 +675,8 @@ def __init__(
675
675
self .__client = client
676
676
else :
677
677
self .__client = Client (endpoint , project , ** kwargs )
678
+ self .__launch_uuid = launch_uuid
678
679
if launch_uuid :
679
- self .__launch_uuid = launch_uuid
680
680
self .use_own_launch = False
681
681
else :
682
682
self .use_own_launch = True
@@ -1040,8 +1040,8 @@ def __init__(
1040
1040
self .__client = Client (endpoint , project , ** kwargs )
1041
1041
self .own_client = False
1042
1042
1043
+ self .__launch_uuid = launch_uuid
1043
1044
if launch_uuid :
1044
- self .__launch_uuid = launch_uuid
1045
1045
self .own_launch = False
1046
1046
else :
1047
1047
self .own_launch = True
You can’t perform that action at this time.
0 commit comments