Skip to content

Commit

Permalink
[O2-2818][core] another go at disabling the autoBind
Browse files Browse the repository at this point in the history
  • Loading branch information
knopers8 authored and teo committed Jun 27, 2023
1 parent 131dd50 commit b447a50
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/task/channel/inbound.go
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ func (inbound *Inbound) buildFMQMap(address string, transport TransportType) (pm
chanProps := controlcommands.PropertyMap{
"address": address,
"method": "bind",
"autoBind": "false",
"autoBind": "0",
"rateLogging": inbound.RateLogging,
"rcvBufSize": strconv.Itoa(inbound.RcvBufSize),
"rcvKernelSize": "0", //NOTE: hardcoded
Expand Down
3 changes: 2 additions & 1 deletion occ/plugin/OccFMQCommon.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ std::tuple<OccLite::nopb::TransitionResponse, ::grpc::Status> doTransition(fair:
"sndBufSize",
"linger",
"rcvKernelSize",
"sndKernelSize"
"sndKernelSize",
"autoBind"
};
for (auto it = arguments.cbegin(); it != arguments.cend(); ++it) {
std::string key = it->key;
Expand Down

0 comments on commit b447a50

Please sign in to comment.