Skip to content

Commit 54b6eed

Browse files
committed
MB-49523 [BP] Fix incorrect matching in goport
This is a backport of MB-49370. Change-Id: I654d1c6f88ef96d55af125ec086928a0759a1478 Reviewed-on: https://review.couchbase.org/c/ns_server/+/172292 Well-Formed: Restriction Checker Reviewed-by: Timofey Barmin <[email protected]> Tested-by: Steve Watanabe <[email protected]>
1 parent dea724f commit 54b6eed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/goport.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ flush_invalid_data(#state{ctx = Ctx} = State) ->
492492

493493
%% pretend it's the regular port output; that way, we'll even try
494494
%% to break it into lines if requested
495-
NewState1 = handle_port_output(stdout, Data, NewState),
495+
{ok, NewState1} = handle_port_output(stdout, Data, NewState),
496496
flush_packet_context(stdout, NewState1);
497497
false ->
498498
State

0 commit comments

Comments
 (0)