Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
小 白蛋
Lens
Commits
f5a7d645
Unverified
Commit
f5a7d645
authored
3 years ago
by
Sebastian Malton
Committed by
GitHub
3 years ago
Browse files
Options
Download
Email Patches
Plain Diff
Reduce cluster logging on quit (#4935)
parent
b65f6e00
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/common/cluster/cluster.ts
+5
-1
src/common/cluster/cluster.ts
with
5 additions
and
1 deletion
+5
-1
src/common/cluster/cluster.ts
+
5
-
1
View file @
f5a7d645
...
...
@@ -379,7 +379,11 @@ export class Cluster implements ClusterModel, ClusterState {
/**
* @internal
*/
@
action
disconnect
()
{
@
action
disconnect
():
void
{
if
(
this
.
disconnected
)
{
return
void
logger
.
debug
(
"
[CLUSTER]: already disconnected
"
,
{
id
:
this
.
id
});
}
logger
.
info
(
`[CLUSTER]: disconnecting`
,
{
id
:
this
.
id
});
this
.
eventsDisposer
();
this
.
contextHandler
?.
stopServer
();
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help