Skip to content

Commit

Permalink
Skipped connect_count counter in internal test
Browse files Browse the repository at this point in the history
  • Loading branch information
klirichek committed Oct 2, 2016
1 parent 31eda5f commit 67a1082
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion api/libsphinxclient/smoke_ref.txt
Expand Up @@ -217,7 +217,6 @@ ag_dist_1_1_wrong_replies: 0
ag_dist_1_1_unexpected_closings: 0
ag_dist_1_1_warnings: 0
ag_dist_1_1_succeeded_queries: 1
ag_dist_1_1_connect_count: 1
query_cpu: OFF
dist_local: 0.000
query_reads: OFF
Expand Down
3 changes: 2 additions & 1 deletion api/libsphinxclient/test.c
Expand Up @@ -365,7 +365,8 @@ void test_status ( sphinx_client * client )
&& strstr ( status[k], "wall" )==NULL
&& strstr ( status[k], "wait" )==NULL
&& strstr ( status[k], "connect_avg" )==NULL
&& strstr ( status[k], "connect_max")==NULL ) )
&& strstr ( status[k], "connect_max")==NULL
&& strstr ( status[k], "connect_count")==NULL ) )
{
for ( j=0; j<num_cols; j++, k++ )
printf ( ( j==0 ) ? "%s:" : " %s", status[k] );
Expand Down

0 comments on commit 67a1082

Please sign in to comment.