Skip to content

Commit 2872eab

Browse files
authored
Deprecate coremodules (SYN-8048) (#4188)
1 parent 8089469 commit 2872eab

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
desc: Deprecated the ``modules`` Cortex configuration option.
3+
prs: []
4+
type: deprecation
5+
...

synapse/cortex.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -815,7 +815,7 @@ class Cortex(s_oauth.OAuthMixin, s_cell.Cell): # type: ignore
815815
},
816816
'modules': {
817817
'default': [],
818-
'description': 'A list of module classes to load.',
818+
'description': 'Deprecated. A list of module classes to load.',
819819
'type': 'array'
820820
},
821821
'storm:log': {
@@ -6372,6 +6372,9 @@ async def _preLoadCoreModule(self, ctor, mods, cmds, mdefs, custom=False):
63726372
if isinstance(ctor, (list, tuple)):
63736373
ctor, conf = ctor
63746374

6375+
if not ctor.startswith('synapse.tests'):
6376+
s_common.deprecated("'modules' Cortex config value", curv='2.206.0')
6377+
63756378
modu = self._loadCoreModule(ctor, conf=conf)
63766379
if modu is None:
63776380
return

synapse/tests/test_cortex.py

+6
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,12 @@ async def test_cortex_basics(self):
8383

8484
await core.nodes('[ inet:ipv4=1.2.3.4 :asn=99 .seen=now +#foo:score=10 ]')
8585

86+
conf = {'modules': [('NewpModule', {})]}
87+
warn = '''"'modules' Cortex config value" is deprecated'''
88+
with self.assertWarnsRegex(DeprecationWarning, warn) as cm:
89+
async with self.getTestCore(dirn=dirn) as core:
90+
pass
91+
8692
async def test_cortex_cellguid(self):
8793
iden = s_common.guid()
8894
conf = {'cell:guid': iden}

0 commit comments

Comments
 (0)