Skip to content

Commit

Permalink
Remove session_consistent (#88)
Browse files Browse the repository at this point in the history
* Remove session_consistent

* Fix typos

* print mntr result
  • Loading branch information
JackyWoo committed Oct 8, 2023
1 parent 1a2a56e commit 4e513be
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion base/glibc-compatibility/musl/COPYRIGHT
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ under the standard MIT terms.
All other files which have no copyright comments are original works
produced specifically for use as part of this library, written either
by Rich Felker, the main author of the library, or by one or more
contibutors listed above. Details on authorship of individual files
contributors listed above. Details on authorship of individual files
can be found in the git version control history of the project. The
omission of copyright and license comments in each file is in the
interest of source tree size.
Expand Down
2 changes: 1 addition & 1 deletion src/Service/FourLetterCommand.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ void print(IFourLetterCommand::StringBuffer & buf, const String & key, uint64_t

String MonitorCommand::run()
{
ConnectionStats stats = keeper_dispatcher.getKeeperConnectionStats();
ConnectionStats stats = keeper_dispatcher.getKeeperConnectionStats();
Keeper4LWInfo keeper_info = keeper_dispatcher.getKeeper4LWInfo();

if (!keeper_info.has_leader)
Expand Down
1 change: 1 addition & 0 deletions src/Service/Settings.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

4 changes: 3 additions & 1 deletion tests/integration/test_four_word_command/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,9 @@ def test_cmd_mntr(started_cluster):

data = node1.send_4lw_cmd(cmd='mntr')

# print(data.decode())
print("mntr output -------------------------------------")
print(data)

reader = csv.reader(data.split('\n'), delimiter='\t')
result = {}

Expand Down
1 change: 1 addition & 0 deletions utils/check-style/codespell-ignore-words.list
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ thenn
ths
offsett
numer
aranges

0 comments on commit 4e513be

Please sign in to comment.