Skip to content

Commit

Permalink
fix: drop unused files from package (#242)
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinBeckwith authored Apr 14, 2020
1 parent 84b4505 commit 15054f6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
2 changes: 0 additions & 2 deletions scheduler/.eslintrc.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
---
rules:
no-console: off
node/no-missing-require: off
no-warning-comments: off
5 changes: 1 addition & 4 deletions scheduler/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,7 @@ app.post('/log_payload', (req, res) => {
// [END cloud_scheduler_app]

app.get('/', (req, res) => {
res
.status(200)
.send('Hello, World!')
.end();
res.status(200).send('Hello, World!').end();
});

// Start the server
Expand Down

0 comments on commit 15054f6

Please sign in to comment.