SonarCloud's python:S7632 parses the literal ``# NOSONAR`` token wherever it appears — including inside explanatory comments that *quote* the directive — and treats the following text as a malformed suppression. The actual bare ``# NOSONAR`` suppression lines are fine; the flagged lines were the prose comments describing them. Reword those comments to drop the inner ``#`` so the analyzer no longer sees a directive. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
53 lines
1.9 KiB
Python
53 lines
1.9 KiB
Python
"""Postgres-queue ``TaskProducer`` — documented seam, not implemented.
|
|
|
|
The external document-processor may later drain a Postgres-backed queue instead
|
|
of NATS to limit NATS operational overhead. Processing stays *external*; only
|
|
the transport changes — so on this server it would be a drop-in producer swap.
|
|
The consume side + the queue-table migration belong to that processor-side
|
|
refactor (cross-repo), NOT here. This stub exists so the transport value and the
|
|
``TaskProducer`` Protocol conformance are testable today.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from types import TracebackType
|
|
from typing import TYPE_CHECKING, Any
|
|
|
|
if TYPE_CHECKING:
|
|
from ..scanner import DocumentTask
|
|
|
|
_NOT_IMPLEMENTED = (
|
|
"Postgres ingest transport is a documented seam. The external "
|
|
"document-processor owns the Postgres-drain refactor (transport swap only; "
|
|
"processing stays external). Use INGEST_BUS_URL=nats://… for now."
|
|
)
|
|
|
|
|
|
class PostgresTaskProducer:
|
|
@classmethod
|
|
async def connect(cls, settings: Any) -> PostgresTaskProducer:
|
|
raise NotImplementedError(_NOT_IMPLEMENTED)
|
|
|
|
async def send(self, task: DocumentTask) -> None: # pragma: no cover
|
|
raise NotImplementedError(_NOT_IMPLEMENTED)
|
|
|
|
def clone(self) -> PostgresTaskProducer: # pragma: no cover
|
|
return self
|
|
|
|
async def __aenter__(self) -> PostgresTaskProducer: # pragma: no cover
|
|
return self
|
|
|
|
async def __aexit__(
|
|
self,
|
|
exc_type: type[BaseException] | None,
|
|
exc: BaseException | None,
|
|
tb: TracebackType | None,
|
|
) -> None: # pragma: no cover
|
|
return None
|
|
|
|
# The bare suppression marker silences S7503 (async method without await):
|
|
# ``async def`` is required by the TaskProducer protocol; this stub is a
|
|
# no-op until the Postgres transport lands.
|
|
async def aclose(self) -> None: # NOSONAR # pragma: no cover
|
|
return None
|