Skip to content

Commit

Permalink
Default to isIPv4Supported: true
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinKolarik committed May 24, 2024
1 parent e933e36 commit e94e2cc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/probe/builder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export const buildProbe = async (socket: Socket): Promise<Probe> => {
availableDiskSpace,
},
status: 'initializing',
isIPv4Supported: false,
isIPv4Supported: true,
isIPv6Supported: false,
};
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ describe('Create measurement request', () => {
.expect(200).expect((response) => {
expect(response.body[0]).to.deep.include({
status: 'initializing',
isIPv4Supported: false,
isIPv4Supported: true,
isIPv6Supported: false,
version: '0.14.0',
nodeVersion: 'v18.17.0',
Expand Down
4 changes: 2 additions & 2 deletions test/tests/integration/probes/get-probes.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ describe('Get Probes', () => {
.expect((response) => {
expect(response.body[0]).to.deep.equal({
version: '0.14.0',
isIPv4Supported: false,
isIPv4Supported: true,
isIPv6Supported: false,
host: '',
ipAddress: '1.2.3.4',
Expand Down Expand Up @@ -246,7 +246,7 @@ describe('Get Probes', () => {
network: 'InterBS S.R.L. (BAEHOST)',
},
status: 'ready',
isIPv4Supported: false,
isIPv4Supported: true,
isIPv6Supported: false,
tags: [],
resolvers: [],
Expand Down

0 comments on commit e94e2cc

Please sign in to comment.