Skip to content

Commit a8d8731

Browse files
authored
fix(scripts): fix typo in telemetry log server script (#2561)
This was missed in 5f43eb6 because the script was being introduced at the same time.
1 parent ed42ed0 commit a8d8731

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/logserver.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Simple HTTP server that logs out all requests it receives and just
22
// replies with 200 Ok. This is very useful when debugging telemetry:
3-
// env HARDRON_METRICS_SEGMENT_API_KEY='ignore' HARDRON_METRICS_SEGMENT_HOST='http://localhost:8000' npm start
3+
// env HADRON_METRICS_SEGMENT_API_KEY='ignore' HADRON_METRICS_SEGMENT_HOST='http://localhost:8000' npm start
44
const http = require('http');
55

66
http.createServer((req, res) => {

0 commit comments

Comments
 (0)