X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2Fcommon.git;a=blobdiff_plain;f=osm_common%2Fmsgbase.py;h=7c27f644395a12a849bc293d10a8121987ce0101;hp=92b24e0466501309e2144a32f318176e5c06f5fd;hb=refs%2Fheads%2Ffeature7106;hpb=bd5a4020099f419c5a54a7c2d8de0b6f1b90b9cc diff --git a/osm_common/msgbase.py b/osm_common/msgbase.py index 92b24e0..7c27f64 100644 --- a/osm_common/msgbase.py +++ b/osm_common/msgbase.py @@ -77,5 +77,5 @@ class MsgBase(object): async def aiowrite(self, topic, key, msg, loop=None): raise MsgException("Method 'aiowrite' not implemented", http_code=HTTPStatus.INTERNAL_SERVER_ERROR) - async def aioread(self, topic, loop=None, callback=None, aiocallback=None, **kwargs): + async def aioread(self, topic, loop=None, callback=None, aiocallback=None, group_id=None, **kwargs): raise MsgException("Method 'aioread' not implemented", http_code=HTTPStatus.INTERNAL_SERVER_ERROR)