Skip to content
This repository has been archived by the owner on Apr 7, 2021. It is now read-only.

Commit

Permalink
remove parseInt because it prevents running on a socket
Browse files Browse the repository at this point in the history
  • Loading branch information
mpd committed Mar 6, 2012
1 parent 7f54dc9 commit 9a710c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Http = require 'http'
Crypto = require 'crypto'
QueryString = require 'querystring'

port = parseInt process.env.PORT || 8081
port = process.env.PORT || 8081
version = "0.5.0"
excluded = process.env.CAMO_HOST_EXCLUSIONS || '*.example.org'
shared_key = process.env.CAMO_KEY || '0x24FEEDFACEDEADBEEFCAFE'
Expand Down

0 comments on commit 9a710c0

Please sign in to comment.