File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -131,7 +131,9 @@ async def init_licensing(self):
131
131
) - timedelta (hours = 1 )
132
132
133
133
if expiry_window > datetime .now (timezone .utc ):
134
- successful_update = self .__update_and_persist_licensing ()
134
+ successful_update = (
135
+ await self .__update_and_persist_licensing ()
136
+ )
135
137
if successful_update :
136
138
logger .info ("Successful re-use of cached information." )
137
139
else :
@@ -204,7 +206,7 @@ async def set_licensing_mhlm(
204
206
"entitlement_id" : entitlement_id ,
205
207
}
206
208
207
- successful_update = self .__update_and_persist_licensing ()
209
+ successful_update = await self .__update_and_persist_licensing ()
208
210
if successful_update :
209
211
logger .info ("Login successful, persisting login information." )
210
212
You can’t perform that action at this time.
0 commit comments