Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: rename crsp stream to event-director #138

Merged
merged 1 commit into from
May 30, 2024
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
4 changes: 2 additions & 2 deletions .env.template
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ REDIS_IS_CLUSTER=false
SERVER_URL=0.0.0.0:4222
STARTUP_TYPE=nats
PRODUCER_STREAM=RuleRequest
CONSUMER_STREAM=crsp
STREAM_SUBJECT=crsp
CONSUMER_STREAM=event-director
STREAM_SUBJECT=event-director
ACK_POLICY=Explicit
PRODUCER_STORAGE=File
PRODUCER_RETENTION_POLICY=Workqueue
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ env:
SERVER_URL: 'nats://localhost:4222'
ACK_POLICY: 'None'
PRODUCER_STREAM: 'temp-rule-sub'
CONSUMER_STREAM: 'CRSP'
CONSUMER_STREAM: 'event-director'
STREAM_SUBJECT:
APM_ACTIVE: false
APM_LOGGING: false
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ ENV CACHETTL=300
# Nats
ENV STARTUP_TYPE=nats
ENV SERVER_URL=0.0.0.0:4222
ENV PRODUCER_STREAM=
ENV CONSUMER_STREAM=
ENV STREAM_SUBJECT=
ENV PRODUCER_STREAM=RuleRequest
ENV CONSUMER_STREAM=event-director
ENV STREAM_SUBJECT=event-director
ENV ACK_POLICY=Explicit
ENV PRODUCER_STORAGE=File
ENV PRODUCER_RETENTION_POLICY=Workqueue
Expand Down
Loading