bfe8bfe2da
CI/CD Pipeline / Validate Code Quality And Tests (push) Successful in 2m14s
CI/CD Pipeline / Frontend Lint (push) Successful in 2m7s
CI/CD Pipeline / Build Production Runtime Images (push) Has been skipped
CI/CD Pipeline / Deploy Production (push) Has been skipped
CI/CD Pipeline / Production Browser E2E (push) Has been skipped
CI/CD Pipeline / Integration Tests (push) Successful in 2m35s
CI/CD Pipeline / Build & Push Staging (Watchtower auto-deploy) (push) Successful in 7m54s
CI/CD Pipeline / Staging E2E Tests (push) Failing after 2m35s
CI/CD Pipeline / Staging API Integration Tests (push) Successful in 3m21s
Redis Feature Flag 灰度发布基础设施:白名单+百分比切流+全局开关,热更新,内部管理API
24 lines
508 B
Python
Executable File
24 lines
508 B
Python
Executable File
from packages.adapters.redis.feature_flag_store import (
|
|
FeatureFlagConfig,
|
|
FeatureFlagStore,
|
|
InMemoryFeatureFlagStore,
|
|
RedisFeatureFlagStore,
|
|
)
|
|
from packages.adapters.redis.session_store import (
|
|
NoopSessionStore,
|
|
RedisConfig,
|
|
SessionStore,
|
|
get_session_store,
|
|
)
|
|
|
|
__all__ = [
|
|
"FeatureFlagConfig",
|
|
"FeatureFlagStore",
|
|
"InMemoryFeatureFlagStore",
|
|
"NoopSessionStore",
|
|
"RedisConfig",
|
|
"RedisFeatureFlagStore",
|
|
"SessionStore",
|
|
"get_session_store",
|
|
]
|