Skip to content

Commit ff4c692

Browse files
committed
Introduce intentional error
1 parent 891adc2 commit ff4c692

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

td5/sample-app/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const http = require('http');
22

33
const server = http.createServer((req, res) => {
44
res.writeHead(200, { 'Content-Type': 'text/plain' });
5-
res.end('Hello, World!\n');
5+
res.send('DevOps Labs!');
66
});
77

88
const port = process.env.PORT || 8080;

0 commit comments

Comments
 (0)