synapse 2.186.0__py311-none-any.whl → 2.187.0__py311-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of synapse might be problematic. Click here for more details.

synapse/cortex.py CHANGED
@@ -1938,12 +1938,12 @@ class Cortex(s_oauth.OAuthMixin, s_cell.Cell): # type: ignore
1938
1938
  return
1939
1939
 
1940
1940
  async def coreQueuePuts(self, name, items):
1941
- await self._push('queue:puts', name, items)
1941
+ return await self._push('queue:puts', name, items)
1942
1942
 
1943
1943
  @s_nexus.Pusher.onPush('queue:puts', passitem=True)
1944
1944
  async def _coreQueuePuts(self, name, items, nexsitem):
1945
1945
  nexsoff, nexsmesg = nexsitem
1946
- await self.multiqueue.puts(name, items, reqid=nexsoff)
1946
+ return await self.multiqueue.puts(name, items, reqid=nexsoff)
1947
1947
 
1948
1948
  @s_nexus.Pusher.onPushAuto('queue:cull')
1949
1949
  async def coreQueueCull(self, name, offs):
synapse/lib/hive.py CHANGED
@@ -351,7 +351,7 @@ class Hive(s_nexus.Pusher, s_telepath.Aware):
351
351
  await self.cell.auth._hndlsetUserProfileValu(iden, name, valu)
352
352
 
353
353
  elif full[0] == 'cellvers':
354
- self.cell.setCellVers(full[-1], valu, nexs=False)
354
+ await self.cell.setCellVers(full[-1], valu, nexs=False)
355
355
 
356
356
  node = await self._getHiveNode(full)
357
357