Skip to content

Commit

Permalink
fix: bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
izatop committed Mar 26, 2020
1 parent 1d4a31d commit 3d4d640
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/unit/src/Runtime/Heartbeat.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export class Heartbeat<T = unknown> {
#beats = true;
#defer: Promise<T | Error>;
readonly #defer: Promise<T | Error>;

constructor(executor: (resolve: (value: Error | T) => void) => void) {
this.#defer = new Promise((resolve) => {
Expand Down
4 changes: 1 addition & 3 deletions packages/unit/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,4 @@ export * from "./Action";
export * from "./Context";
export * from "./Validation";
export * from "./Service";
export * from "./Runtime/Runtime";
export * from "./Runtime/Runtime";
export * from "./Runtime/interfaces";
export * from "./Runtime";
2 changes: 1 addition & 1 deletion packages/web/src/Transport/Server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {Connection} from "./Connection";

export class Server implements IDisposableSync, IRunnable, IDestroyable {
readonly [DisposableSync]: true;

protected readonly server: http.Server;

protected readonly application: Application<any, any>;
Expand Down

0 comments on commit 3d4d640

Please sign in to comment.