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):
131131 ) - timedelta (hours = 1 )
132132
133133 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+ )
135137 if successful_update :
136138 logger .info ("Successful re-use of cached information." )
137139 else :
@@ -204,7 +206,7 @@ async def set_licensing_mhlm(
204206 "entitlement_id" : entitlement_id ,
205207 }
206208
207- successful_update = self .__update_and_persist_licensing ()
209+ successful_update = await self .__update_and_persist_licensing ()
208210 if successful_update :
209211 logger .info ("Login successful, persisting login information." )
210212
You can’t perform that action at this time.
0 commit comments