Skip to content

Commit

Permalink
Remove false
Browse files Browse the repository at this point in the history
  • Loading branch information
aulorbe committed Dec 23, 2024
1 parent a04bdd0 commit 591b624
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/integration/data/vectors/upsertAndUpdate.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ describe('Testing retry logic via a mock, in-memory http server', () => {
// Helper function to start the server with a specific response pattern
const startMockServer = (shouldSucceedOnSecondCall: boolean) => {
// Create http server
server = http.createServer({ keepAlive: false }, (req, res) => {
server = http.createServer((req, res) => {
const { pathname } = parse(req.url || '', true);
if (req.method === 'POST' && pathname === `/vectors/${op}`) {
callCount++;
Expand Down

0 comments on commit 591b624

Please sign in to comment.