Skip to content

Commit 6a75010

Browse files
committed
fix
1 parent 49b37dd commit 6a75010

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

yarn-project/blob-sink/src/server/server.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { NoopTelemetryClient } from '@aztec/telemetry-client/noop';
66

77
import express, { type Express, type Request, type Response, json } from 'express';
88
import { type Server } from 'http';
9-
import { AddressInfo } from 'net';
9+
import { type AddressInfo } from 'net';
1010
import { z } from 'zod';
1111

1212
import { type BlobStore, DiskBlobStore } from '../blobstore/index.js';
@@ -143,7 +143,7 @@ export class BlobSinkServer {
143143
const address = this.server?.address() as AddressInfo | null;
144144
if (!address) {
145145
this.log.error('Server address not found');
146-
this.stop().then(() => reject(new Error('Server address not found')));
146+
void this.stop().then(() => reject(new Error('Server address not found')));
147147
}
148148

149149
this.port = address!.port;

0 commit comments

Comments
 (0)