Skip to content

Commit

Permalink
bundle: increase depth of plugin link
Browse files Browse the repository at this point in the history
  • Loading branch information
mmcgee-jump committed Feb 11, 2025
1 parent 498c0ca commit a29490d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app/fdctl/run/topos/fd_frankendancer.c
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,9 @@ fd_topo_initialize( config_t * config ) {

if( plugins_enabled ) {
fd_topob_wksp( topo, "bundle_plugi" );
fd_topob_link( topo, "bundle_plugi", "bundle_plugi", 128UL, sizeof(fd_plugin_msg_block_engine_update_t), 1UL );
/* bundle_plugi must be kind of deep, to prevent exhausting shared
flow control credits when publishing many packets at once. */
fd_topob_link( topo, "bundle_plugi", "bundle_plugi", 65536UL, sizeof(fd_plugin_msg_block_engine_update_t), 1UL );
fd_topob_tile_in( topo, "plugin", 0UL, "metric_in", "bundle_plugi", 0UL, FD_TOPOB_RELIABLE, FD_TOPOB_POLLED );
fd_topob_tile_out( topo, "bundle", 0UL, "bundle_plugi", 0UL );
}
Expand Down

0 comments on commit a29490d

Please sign in to comment.