Skip to content

EBP-348: Fix Typo in C Persistence with Queues page #160

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

Merged
merged 1 commit into from
Dec 17, 2024
Merged
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 src/pages/tutorials/c/persistence-with-queues.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ flowEventCallback ( solClient_opaqueFlow_pt opaqueFlow_p, solClient_flow_eventCa
* Create a Flow
*************************************************************************/
/* Flow Properties */
const char *flowProps[20] = (0, };
const char *flowProps[20] = {0, };

/* Flow */
solClient_opaqueFlow_pt flow_p;
Expand Down Expand Up @@ -258,4 +258,4 @@ Exiting.
```
You can also run `QueuePublisher` a few more times to let the queue to build up a little before running `QueueSubscriber`. The `QueueSubscriber` will consume all queued messages and display them.

You have now successfully connected a client, sent persistent messages to a queue and received and acknowledged them.
You have now successfully connected a client, sent persistent messages to a queue and received and acknowledged them.
Loading