Skip to content

Commit

Permalink
Merge branch 'bug/workflow-as-activity-input'
Browse files Browse the repository at this point in the history
  • Loading branch information
sfmskywalker committed Dec 5, 2024
2 parents 75cb3a3 + 2b63c2b commit ff0b5ee
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions src/apps/Elsa.Server.Web/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,41 @@
}
]
},
"Kafka": {
"Topics": [
{
"Id": "topic-1",
"Name": "topic-1"
},
{
"Id": "topic-2",
"Name": "topic-2"
}
],
"Producers": [
{
"Id": "producer-1",
"Name": "Producer 1",
"FactoryType": "Elsa.Kafka.Factories.GenericProducerFactory`2[[System.String, System.Private.CoreLib], [Elsa.Server.Web.Messages.OrderReceived, Elsa.Server.Web]], Elsa.Kafka",
"Config": {
"BootstrapServers": "localhost:9092"
}
}
],
"Consumers": [
{
"Id": "consumer-1",
"Name": "Consumer 1",
"FactoryType": "Elsa.Kafka.Factories.GenericConsumerFactory`2[[System.String, System.Private.CoreLib], [Elsa.Server.Web.Messages.OrderReceived, Elsa.Server.Web]], Elsa.Kafka",
"Config": {
"BootstrapServers": "localhost:9092",
"GroupId": "group-1",
"AutoOffsetReset": "earliest",
"EnableAutoCommit": "true"
}
}
]
},
"Secrets": {
"Management": {
"SweepInterval": "04:00:00"
Expand Down

0 comments on commit ff0b5ee

Please sign in to comment.