Petro
Petro
Hi all, I have code similar to this: ``` class MyEnum(Enum): ONE = 'ONE' TWO = 'TWO' @dataclass_json @dataclass class MyClass: enum_field: Optional[Dict[str, List[MyEnum]]] = None ``` And of course,...
Consider the following code: ```python import asyncio import nats async def run(): async def error_cb(e): print(f'There was an error: {e}') try: nc = await nats.connect(servers='nats://localhost:4222', error_cb=error_cb, max_reconnect_attempts=2) await nc.publish(subject='foo', payload='data'.encode())...
Hi all, the "win" folder is 18 years old, so I doubt I can use it with MSVS 2022. And I couldn't find any instructions on how to build Pgtcl...
Also I've removed unused Windows-specific code
### Observed behavior Consider the following code: ```python import logging import asyncio import nats from nats.js.api import ConsumerConfig, StreamConfig, StorageType import sys logging.basicConfig(stream=sys.stdout, level=logging.INFO) async def consume(): nc = await...
Consider the following code: ```python import asyncio import nats async def run(): async def handler(msg): print(f'Received a message on {msg.subject} : {msg.data.decode()}') for k in msg.header: print(f'{k} : {msg.header[k]}') try:...
Hello, The current support TLS in nats.c based exclusively on OpenSSL has certain concerns on Windows, such as: - no integration with the Windows certificate store out-of-the-box (I can workaround...
### What type of bug is this? Performance issue ### What subsystems and features are affected? Data ingestion, Query executor, Query planner ### What happened? A query of the form...