This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var express = require("express"), | |
| app = express(); | |
| app.set('port', (process.env.PORT || 5000)); | |
| /* | |
| * No H13 Error during dyno restart: | |
| */ | |
| app.get("/",function(req, res){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var express = require("express"), | |
| app = express(); | |
| app.set('port', (process.env.PORT || 5000)); | |
| /* | |
| * H13 Error during dyno restart: | |
| * This is an attempt to recreate H13 errors during dyno restart that were observed | |
| * in the app review. | |
| * |