Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release beta #2575

Merged
merged 18 commits into from
Jan 8, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: Bump what was remaining
  • Loading branch information
rolljee committed Jan 8, 2025
commit c16d372b1a4a3fdb5ca07da7548cf05df327d609
2 changes: 1 addition & 1 deletion lib/core/network/protocols/mqttProtocol.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class MqttProtocol extends Protocol {
super("mqtt");

// eslint-disable-next-line new-cap
this.aedes = new Aedes.Server();
this.aedes = new Aedes();
this.server = net.createServer(this.aedes.handle);

this.connections = new Map();
Expand Down
3 changes: 0 additions & 3 deletions lib/kuzzle/kuzzle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ import stringify from "json-stable-stringify";
import { Koncorde } from "koncorde";
import _ from "lodash";
import murmur from "murmurhash";
import segfaultHandler from "node-segfault-handler";

import { version } from "../../package.json";
import Funnel from "../api/funnel";
Expand Down Expand Up @@ -904,8 +903,6 @@ class Kuzzle extends KuzzleEventEmitter {
this.shutdown();
});
}

segfaultHandler.registerHandler();
}

async dumpAndExit(suffix) {
Expand Down
Loading
Loading