Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions engine/persistence/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,19 @@
assert_security_operator_role,
assert_worker_role,
)
from engine.persistence.supply_execution import (
DEFAULT_SUPPLY_BRIDGE_LEASE_TTL_SECONDS,
MAX_SUPPLY_BRIDGE_LEASE_TTL_SECONDS,
PostgreSQLConnectorCheckpointStore,
PostgreSQLStagedArtifactSink,
PostgreSQLSupplyBridgeLeaseIssuer,
PostgreSQLSupplyExecutionBridge,
SupplyBridgeExecutionIdentity,
SupplyBridgeExecutionResult,
SupplyBridgeLeaseIssueRequest,
SupplyBridgeLeasePreemptionRequest,
SupplyBridgeUnavailable,
)
from engine.persistence.tenant_context import (
OrganizationContextBindingError,
organization_transaction,
Expand Down Expand Up @@ -172,6 +185,17 @@
"DEFAULT_WORKER_LEASE_TTL_SECONDS",
"FILE_DISPATCH_MAX_LEASE_GENERATION",
"MAX_WORKER_LEASE_TTL_SECONDS",
"DEFAULT_SUPPLY_BRIDGE_LEASE_TTL_SECONDS",
"MAX_SUPPLY_BRIDGE_LEASE_TTL_SECONDS",
"PostgreSQLConnectorCheckpointStore",
"PostgreSQLStagedArtifactSink",
"PostgreSQLSupplyBridgeLeaseIssuer",
"PostgreSQLSupplyExecutionBridge",
"SupplyBridgeExecutionIdentity",
"SupplyBridgeExecutionResult",
"SupplyBridgeLeaseIssueRequest",
"SupplyBridgeLeasePreemptionRequest",
"SupplyBridgeUnavailable",
"assert_runtime_role",
"assert_release_operator_role",
"assert_action_role",
Expand Down
274 changes: 268 additions & 6 deletions engine/persistence/schema_security_manifest.yaml

Large diffs are not rendered by default.

Loading
Loading