Skip to content

Commit

Permalink
Revert "Minor changes"
Browse files Browse the repository at this point in the history
This reverts commit 05e7f9b.
  • Loading branch information
BitterPanda committed Feb 19, 2024
1 parent 05e7f9b commit 695a460
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ See [benchmarks](benchmarks) for more information.

## Development

* `$ make install` to install dependencies (with administrator privileges on linux)
* `$ make install` to install dependencies
* `$ make build` to build the library
* `$ make watch` to watch for changes and rebuild the library
* `$ make test` to run tests using tap
Expand Down
2 changes: 1 addition & 1 deletion library/src/agent/Agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { resolve } from "path";
import { Source } from "./Source";

export class Agent {
private heartbeatIntervalInMS = 60 * 60 * 1000; // 1h
private heartbeatIntervalInMS = 60 * 60 * 1000;
private interval: NodeJS.Timeout | undefined = undefined;
private stats: Stats = {};
private preventedPrototypePollution = false;
Expand Down
2 changes: 1 addition & 1 deletion library/src/sinks/MongoDB.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const context: Context = {
cookies: {},
};

t.test("we can hijack the MongoDB library", async (t) => {
t.test("we can highjack the MongoDB library", async (t) => {
new MongoDB().wrap();

const agent = new Agent(
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 695a460

Please sign in to comment.