synapse 2.177.0__py311-none-any.whl → 2.178.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.

Files changed (44) hide show
  1. synapse/cortex.py +8 -4
  2. synapse/lib/aha.py +361 -88
  3. synapse/lib/base.py +27 -9
  4. synapse/lib/cell.py +167 -110
  5. synapse/lib/config.py +15 -11
  6. synapse/lib/coro.py +13 -0
  7. synapse/lib/layer.py +0 -5
  8. synapse/lib/link.py +1 -1
  9. synapse/lib/lmdbslab.py +3 -3
  10. synapse/lib/nexus.py +24 -12
  11. synapse/lib/stormlib/imap.py +6 -2
  12. synapse/lib/stormlib/smtp.py +12 -2
  13. synapse/lib/version.py +2 -2
  14. synapse/telepath.py +32 -17
  15. synapse/tests/files/aha/certs/cas/synapse.crt +28 -0
  16. synapse/tests/files/aha/certs/cas/synapse.key +51 -0
  17. synapse/tests/files/aha/certs/hosts/00.aha.loop.vertex.link.crt +30 -0
  18. synapse/tests/files/aha/certs/hosts/00.aha.loop.vertex.link.key +51 -0
  19. synapse/tests/files/aha/certs/users/root@synapse.crt +29 -0
  20. synapse/tests/files/aha/certs/users/root@synapse.key +51 -0
  21. synapse/tests/files/rstorm/testsvc.py +1 -1
  22. synapse/tests/test_axon.py +1 -1
  23. synapse/tests/test_cortex.py +22 -59
  24. synapse/tests/test_lib_agenda.py +3 -3
  25. synapse/tests/test_lib_aha.py +336 -490
  26. synapse/tests/test_lib_base.py +20 -0
  27. synapse/tests/test_lib_cell.py +49 -22
  28. synapse/tests/test_lib_config.py +4 -3
  29. synapse/tests/test_lib_nexus.py +8 -0
  30. synapse/tests/test_lib_stormlib_aha.py +35 -35
  31. synapse/tests/test_lib_stormlib_cell.py +4 -15
  32. synapse/tests/test_lib_stormlib_imap.py +14 -3
  33. synapse/tests/test_lib_stormlib_smtp.py +51 -0
  34. synapse/tests/test_tools_aha.py +78 -101
  35. synapse/tests/utils.py +86 -120
  36. synapse/tools/aha/clone.py +50 -0
  37. synapse/tools/aha/enroll.py +2 -1
  38. synapse/tools/backup.py +2 -2
  39. synapse/tools/changelog.py +3 -1
  40. {synapse-2.177.0.dist-info → synapse-2.178.0.dist-info}/METADATA +48 -48
  41. {synapse-2.177.0.dist-info → synapse-2.178.0.dist-info}/RECORD +44 -37
  42. {synapse-2.177.0.dist-info → synapse-2.178.0.dist-info}/LICENSE +0 -0
  43. {synapse-2.177.0.dist-info → synapse-2.178.0.dist-info}/WHEEL +0 -0
  44. {synapse-2.177.0.dist-info → synapse-2.178.0.dist-info}/top_level.txt +0 -0
synapse/cortex.py CHANGED
@@ -774,13 +774,17 @@ class Cortex(s_oauth.OAuthMixin, s_cell.Cell): # type: ignore
774
774
  },
775
775
  'layer:lmdb:map_async': {
776
776
  'default': True,
777
- 'description': 'Set the default lmdb:map_async value in LMDB layers.',
778
- 'type': 'boolean'
777
+ 'description': 'Deprecated. This value is ignored.',
778
+ 'type': 'boolean',
779
+ 'hidecmdl': True,
780
+ 'hideconf': True,
779
781
  },
780
782
  'layer:lmdb:max_replay_log': {
781
783
  'default': 10000,
782
- 'description': 'Set the max size of the replay log for all layers.',
783
- 'type': 'integer'
784
+ 'description': 'Deprecated. This value is ignored.',
785
+ 'type': 'integer',
786
+ 'hidecmdl': True,
787
+ 'hideconf': True,
784
788
  },
785
789
  'layers:lockmemory': {
786
790
  'default': False,