File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -3307,8 +3307,8 @@ static sds clusterManagerGetConfigSignature(clusterManagerNode *node) {
33073307 nodename = token ;
33083308 tot_size = (p - token );
33093309 name_len = tot_size ++ ; // Make room for ':' in tot_size
3310- } else if ( i == 8 ) break ;
3311- i ++ ;
3310+ }
3311+ if ( ++ i == 8 ) break ;
33123312 }
33133313 if (i != 8 ) continue ;
33143314 if (nodename == NULL ) continue ;
@@ -3347,7 +3347,7 @@ static sds clusterManagerGetConfigSignature(clusterManagerNode *node) {
33473347 char * sp = cfg + name_len ;
33483348 * (sp ++ ) = ':' ;
33493349 for (i = 0 ; i < c ; i ++ ) {
3350- if (i > 0 ) * (sp ++ ) = '| ' ;
3350+ if (i > 0 ) * (sp ++ ) = ', ' ;
33513351 int slen = strlen (slots [i ]);
33523352 memcpy (sp , slots [i ], slen );
33533353 sp += slen ;
You can’t perform that action at this time.
0 commit comments