Skip to content

Commit

Permalink
Correctly refer to the set() type.
Browse files Browse the repository at this point in the history
Change-Id: I779f86216dd47c2151f023d7278401641a701762
Reviewed-on: https://review.couchbase.org/c/ns_server/+/166139
Tested-by: Aliaksey Artamonau <aliaksey.artamonau@couchbase.com>
Well-Formed: Build Bot <build@couchbase.com>
Reviewed-by: Timofey Barmin <timofey.barmin@couchbase.com>
  • Loading branch information
aartamonau authored and Aliaksey Artamonau committed Nov 23, 2021
1 parent 5e08b84 commit bd7e220
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ns_vbucket_mover.erl
Expand Up @@ -44,7 +44,7 @@
pending_map_sync :: undefined | [{pid(), any()}],
moves_scheduler_state,
progress_callback :: progress_callback(),
all_nodes_set :: set:set()}).
all_nodes_set :: sets:set()}).

%%
%% API
Expand Down
2 changes: 1 addition & 1 deletion src/vbucket_move_scheduler.erl
Expand Up @@ -139,7 +139,7 @@

compaction_countdown_per_node :: dict:dict(), % node() -> non_neg_integer()
in_flight_per_node :: dict:dict(), % node() -> non_neg_integer() (I.e. counts current moves)
in_flight_compactions :: set:set(), % set of nodes
in_flight_compactions :: sets:set(), % set of nodes

initial_move_counts :: dict:dict(),
left_move_counts :: dict:dict()
Expand Down

0 comments on commit bd7e220

Please sign in to comment.