Bug 1046851 - Nodejs-0.6 app failed to git push due to "npm ERR! Error: SSL Error: CERT_UNTRUSTED"
Summary: Nodejs-0.6 app failed to git push due to "npm ERR! Error: SSL Error: CERT_UNT...
Keywords:
Status: CLOSED CURRENTRELEASE
Alias: None
Product: OpenShift Online
Classification: Red Hat
Component: Image
Version: 2.x
Hardware: Unspecified
OS: Unspecified
medium
medium
Target Milestone: ---
: ---
Assignee: Andy Goldstein
QA Contact: libra bugs
URL:
Whiteboard:
: 1048291 (view as bug list)
Depends On:
Blocks: 1057968
TreeView+ depends on / blocked
 
Reported: 2013-12-27 06:55 UTC by Lei Zhang
Modified: 2015-05-15 00:36 UTC (History)
5 users (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
: 1057968 (view as bug list)
Environment:
Last Closed: 2014-02-26 19:09:09 UTC
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)

Description Lei Zhang 2013-12-27 06:55:16 UTC
Description of problem:
Given one nodejs-0.6 app created(e.g.,mynodejs06), change something in local repo and git push, found "npm ERR! Error: SSL Error: CERT_UNTRUSTED"

remote: Stopping NodeJS cartridge
remote: Saving away previously installed Node modules
remote: Building git ref 'master', commit 3a463f0
remote: Building NodeJS cartridge
remote: npm info it worked if it ends with ok
remote: npm info using npm.37
remote: npm info using node.20
remote: npm info preinstall OpenShift-Sample-App.0
remote: npm info retry registry request attempt 1 at 22:14:46
remote: npm http GET https://registry.npmjs.org/express
remote: npm info retry will retry, error on last attempt: Error: SSL Error: CERT_UNTRUSTED
remote: npm info retry registry request attempt 2 at 22:14:57
remote: npm http GET https://registry.npmjs.org/express
remote: npm info retry will retry, error on last attempt: Error: SSL Error: CERT_UNTRUSTED
remote: npm info retry registry request attempt 3 at 22:15:57
remote: npm http GET https://registry.npmjs.org/express
remote: npm ERR! Error: SSL Error: CERT_UNTRUSTED
remote: npm ERR!     at ClientRequest.<anonymous> (/usr/lib/node_modules/npm/node_modules/request/main.js:440:26)
remote: npm ERR!     at ClientRequest.g (events.js:156:14)
remote: npm ERR!     at ClientRequest.emit (events.js:67:17)
remote: npm ERR!     at HTTPParser.parserOnIncomingClient [as onIncoming] (http.js:1256:7)
remote: npm ERR!     at HTTPParser.parserOnHeadersComplete [as onHeadersComplete] (http.js:91:29)
remote: npm ERR!     at CleartextStream.socketOnData [as ondata] (http.js:1288:20)
remote: npm ERR!     at CleartextStream._push (tls.js:375:27)
remote: npm ERR!     at SecurePair.cycle (tls.js:734:20)
remote: npm ERR!     at EncryptedStream.write (tls.js:130:13)
remote: npm ERR!     at Socket.ondata (stream.js:38:26)
remote: npm ERR!  [Error: SSL Error: CERT_UNTRUSTED]
remote: npm ERR! You may report this log at:
remote: npm ERR!     <http://github.com/isaacs/npm/issues>
remote: npm ERR! or email it to:
remote: npm ERR!     <npm->
remote: 
remote: npm ERR! System Linux 2.6.32-431.1.2.el6.x86_64
remote: npm ERR! command "node" "/usr/bin/npm" "install" "-d"
remote: npm ERR! cwd /var/lib/openshift/52bcf011383a83be69000461/app-root/runtime/repo
remote: npm ERR! node -v v0.6.20
remote: npm ERR! npm -v 1.1.37
remote: npm ERR! message SSL Error: CERT_UNTRUSTED
remote: npm ERR! 
remote: npm ERR! Additional logging details can be found in:
remote: npm ERR!     /var/lib/openshift/52bcf011383a83be69000461/app-root/runtime/repo/npm-debug.log
remote: npm ERR! not ok code undefined
remote: npm ERR! not ok code 1
remote: An error occurred executing 'gear postreceive' (exit code: 1)
remote: Error message: Failed to execute: 'control build' for /var/lib/openshift/52bcf011383a83be69000461/nodejs
remote: 
remote: For more details about the problem, try running the command again with the '--trace' option.
To ssh://52bcf011383a83be69000461.rhcloud.com/~/git/mynodejs.git/
   6450449..3a463f0  master -> master

Version-Release number of selected component (if applicable):
devenv_4170

How reproducible:
always

Steps to Reproduce:
1.create one nodejs06 app
#rhc app create mynodejs06 nodejs-0.6
2.change something in local repo and git push
#sed -i -e 's/Welcome to OpenShift/Welcome to OpenShift~_~/g' index.html
#git add -A &&git commit -amp&&git push
3.

Actual results:
"npm ERR! Error: SSL Error: CERT_UNTRUSTED" met when git push for nodejs-0.6 app

Expected results:
nodejs-0.6 app should git push successfully

Additional info:
nodejs-0.10 works well

Comment 1 Nan Wei 2013-12-30 07:10:19 UTC
Version-Release number of selected component (if applicable):
devenv_4171

1.Create nodejs-0.10 app
rhc app create cndjs10 nodejs-0.10

2.Use attachment to replace server.js and add client.js

3.Add "websocket" to package.json
  "dependencies": {
    "websocket": ">= 1.0.7"
  },

4. Push the changes
git add .; git commit -amp; git push

Actual results:
remote: npm ERR! install Couldn't read dependencies
remote: npm ERR! Failed to parse json
remote: npm ERR! Unexpected string
remote: npm ERR! File: /var/lib/openshift/52c1083d594cfc72b8000005/app-root/runtime/repo/package.json
remote: npm ERR! Failed to parse package.json data.
remote: npm ERR! package.json must be actual JSON, not just JavaScript.
remote: npm ERR! 
remote: npm ERR! This is not a bug in npm.
remote: npm ERR! Tell the package author to fix their package.json file. JSON.parse
remote: 
remote: npm ERR! System Linux 2.6.32-431.1.2.el6.x86_64
remote: npm ERR! command "node" "/opt/rh/nodejs010/root/usr/bin/npm" "install" "-d"
remote: npm ERR! cwd /var/lib/openshift/52c1083d594cfc72b8000005/app-root/runtime/repo
remote: npm ERR! node -v v0.10.5
remote: npm ERR! npm -v 1.2.17
remote: npm ERR! file /var/lib/openshift/52c1083d594cfc72b8000005/app-root/runtime/repo/package.json
remote: npm ERR! code EJSONPARSE
remote: npm ERR! 
remote: npm ERR! Additional logging details can be found in:
remote: npm ERR!     /var/lib/openshift/52c1083d594cfc72b8000005/app-root/runtime/repo/npm-debug.log
remote: npm ERR! not ok code 0
remote: An error occurred executing 'gear postreceive' (exit code: 1)
remote: Error message: Failed to execute: 'control build' for /var/lib/openshift/52c1083d594cfc72b8000005/nodejs


Expected results:
nodejs-0.10 app should git push successfully

Comment 2 Nan Wei 2013-12-30 09:04:10 UTC
When step 3 actual content:
3.Add "websocket" to package.json
  "dependencies": {
    "websocket": ">= 1.0.7"
    # "express": "~3.4.4"  
  },
It will fail to push and throw some error message above, It is related to Json file to add comments. It must be added "," like this :
Add "websocket" to package.json
  "dependencies": {
    "websocket": ">= 1.0.7",
    # "express": "~3.4.4"  
  },

So the nodejs-0.10 app can be pushed successfully.

Comment 3 Liang Xia 2013-12-30 09:23:37 UTC
nodejs-0.10 works well.

Just ignore comment #1 & #2, please.
Sorry for the inconvenience.

Comment 4 Dan McPherson 2014-01-04 01:40:32 UTC
*** Bug 1048291 has been marked as a duplicate of this bug. ***

Comment 5 Ben Parees 2014-01-04 04:21:57 UTC
This worked for me with devenv_4182 (presumably based on the fix delivered in 1048291)

Comment 6 Lei Zhang 2014-01-06 05:20:28 UTC
Verified on devenv_4187


[rayzhang@ray mynodejs06]$ git add -A&&git commit -amp&&git push
[master ffa493a] p
 1 file changed, 1 insertion(+), 1 deletion(-)
warning: push.default is unset; its implicit value is changing in
Git 2.0 from 'matching' to 'simple'. To squelch this message
and maintain the current behavior after the default changes, use:

  git config --global push.default matching

To squelch this message and adopt the new behavior now, use:

  git config --global push.default simple

See 'git help config' and search for 'push.default' for further information.
(the 'simple' mode was introduced in Git 1.7.11. Use the similar mode
'current' instead of 'simple' if you sometimes use older versions of Git)

Counting objects: 5, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 282 bytes, done.
Total 3 (delta 2), reused 0 (delta 0)
remote: Stopping NodeJS cartridge
remote: Saving away previously installed Node modules
remote: Building git ref 'master', commit ffa493a
remote: Building NodeJS cartridge
remote: npm info it worked if it ends with ok
remote: npm info using npm.37
remote: npm info using node.20
remote: npm info preinstall OpenShift-Sample-App.0
remote: npm info retry registry request attempt 1 at 00:17:36
remote: npm http GET https://registry.npmjs.org/express
remote: npm http 200 https://registry.npmjs.org/express
remote: npm info retry fetch attempt 1 at 00:17:36
remote: npm http GET https://registry.npmjs.org/express/-/express-3.4.7.tgz
remote: npm http 200 https://registry.npmjs.org/express/-/express-3.4.7.tgz
remote: npm info shasum 3b939c47d2aa44dfecf77d50da2123c5bd313366
remote: npm info shasum /tmp/npm-22659/1388985456634-0.4268930705729872/tmp.tgz
remote: npm info shasum 538c50bd5970512057203c18e33e3b97e93a4b9a
remote: npm info shasum /var/lib/openshift/52ca3c1fd8f3b71c46000043/.npm/express/3.4.7/package.tgz
remote: npm info install express.7 into /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo
remote: npm info installOne express.7
remote: npm WARN engine express.7: wanted: {"node":">= 0.8.0"} (current: {"node":"0.6.20","npm":"1.1.37"})
remote: npm info /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express unbuild
remote: npm info preinstall express.7
remote: npm info retry registry request attempt 1 at 00:17:37
remote: npm http GET https://registry.npmjs.org/connect/2.12.0
remote: npm info retry registry request attempt 1 at 00:17:37
remote: npm http GET https://registry.npmjs.org/commander/1.3.2
remote: npm info retry registry request attempt 1 at 00:17:37
remote: npm http GET https://registry.npmjs.org/range-parser/0.0.4
remote: npm info retry registry request attempt 1 at 00:17:37
remote: npm http GET https://registry.npmjs.org/mkdirp/0.3.5
remote: npm info retry registry request attempt 1 at 00:17:37
remote: npm http GET https://registry.npmjs.org/cookie/0.1.0
remote: npm info retry registry request attempt 1 at 00:17:37
remote: npm http GET https://registry.npmjs.org/buffer-crc32/0.2.1
remote: npm info retry registry request attempt 1 at 00:17:37
remote: npm http GET https://registry.npmjs.org/fresh/0.2.0
remote: npm info retry registry request attempt 1 at 00:17:37
remote: npm http GET https://registry.npmjs.org/methods/0.1.0
remote: npm info retry registry request attempt 1 at 00:17:37
remote: npm http GET https://registry.npmjs.org/send/0.1.4
remote: npm info retry registry request attempt 1 at 00:17:37
remote: npm http GET https://registry.npmjs.org/cookie-signature/1.0.1
remote: npm info retry registry request attempt 1 at 00:17:37
remote: npm http GET https://registry.npmjs.org/merge-descriptors/0.0.1
remote: npm info retry registry request attempt 1 at 00:17:37
remote: npm http GET https://registry.npmjs.org/debug
remote: npm http 200 https://registry.npmjs.org/connect/2.12.0
remote: npm http 200 https://registry.npmjs.org/cookie/0.1.0
remote: npm info retry fetch attempt 1 at 00:17:37
remote: npm http GET https://registry.npmjs.org/connect/-/connect-2.12.0.tgz
remote: npm http 200 https://registry.npmjs.org/mkdirp/0.3.5
remote: npm http 200 https://registry.npmjs.org/commander/1.3.2
remote: npm http 200 https://registry.npmjs.org/range-parser/0.0.4
remote: npm info retry fetch attempt 1 at 00:17:37
remote: npm http GET https://registry.npmjs.org/cookie/-/cookie-0.1.0.tgz
remote: npm http 200 https://registry.npmjs.org/fresh/0.2.0
remote: npm http 200 https://registry.npmjs.org/buffer-crc32/0.2.1
remote: npm http 200 https://registry.npmjs.org/send/0.1.4
remote: npm http 200 https://registry.npmjs.org/methods/0.1.0
remote: npm http 200 https://registry.npmjs.org/debug
remote: npm http 200 https://registry.npmjs.org/merge-descriptors/0.0.1
remote: npm http 200 https://registry.npmjs.org/cookie-signature/1.0.1
remote: npm http 200 https://registry.npmjs.org/cookie/-/cookie-0.1.0.tgz
remote: npm http 200 https://registry.npmjs.org/connect/-/connect-2.12.0.tgz
remote: npm info shasum 90eb469ddce905c866de687efc43131d8801f9d0
remote: npm info shasum /tmp/npm-22659/1388985457704-0.25114891305565834/tmp.tgz
remote: npm info retry fetch attempt 1 at 00:17:37
remote: npm info retry fetch attempt 1 at 00:17:37
remote: npm info retry fetch attempt 1 at 00:17:37
remote: npm http GET https://registry.npmjs.org/commander/-/commander-1.3.2.tgz
remote: npm http GET https://registry.npmjs.org/range-parser/-/range-parser-0.0.4.tgz
remote: npm info shasum 31d8fa0dcacdf1908d822bd2923be8a2d2a7ed9a
remote: npm info shasum /tmp/npm-22659/1388985457684-0.5983936241827905/tmp.tgz
remote: npm http GET https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.5.tgz
remote: npm info retry fetch attempt 1 at 00:17:38
remote: npm info retry fetch attempt 1 at 00:17:38
remote: npm info retry fetch attempt 1 at 00:17:38
remote: npm info retry fetch attempt 1 at 00:17:38
remote: npm http 200 https://registry.npmjs.org/range-parser/-/range-parser-0.0.4.tgz
remote: npm http 200 https://registry.npmjs.org/commander/-/commander-1.3.2.tgz
remote: npm info retry fetch attempt 1 at 00:17:38
remote: npm http 200 https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.5.tgz
remote: npm info retry fetch attempt 1 at 00:17:38
remote: npm info retry fetch attempt 1 at 00:17:38
remote: npm http GET https://registry.npmjs.org/fresh/-/fresh-0.2.0.tgz
remote: npm http GET https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.1.tgz
remote: npm http GET https://registry.npmjs.org/send/-/send-0.1.4.tgz
remote: npm http GET https://registry.npmjs.org/debug/-/debug-0.7.4.tgz
remote: npm http GET https://registry.npmjs.org/methods/-/methods-0.1.0.tgz
remote: npm info shasum c0427ffef51c10acba0782a46c9602e744ff620b
remote: npm info shasum /tmp/npm-22659/1388985457964-0.5245983132626861/tmp.tgz
remote: npm info shasum 8a8f30ec670a6fdd64af52f1914b907d79ead5b5
remote: npm info shasum /tmp/npm-22659/1388985457964-0.7301264426205307/tmp.tgz
remote: npm http GET https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-0.0.1.tgz
remote: npm http GET https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.1.tgz
remote: npm http 200 https://registry.npmjs.org/fresh/-/fresh-0.2.0.tgz
remote: npm http 200 https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.1.tgz
remote: npm http 200 https://registry.npmjs.org/debug/-/debug-0.7.4.tgz
remote: npm http 200 https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.1.tgz
remote: npm info shasum de3e5f8961c88c787ee1368df849ac4413eca8d7
remote: npm info shasum /tmp/npm-22659/1388985457988-0.5282494525890797/tmp.tgz
remote: npm http 200 https://registry.npmjs.org/send/-/send-0.1.4.tgz
remote: npm http 200 https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-0.0.1.tgz
remote: npm http 200 https://registry.npmjs.org/methods/-/methods-0.1.0.tgz
remote: npm info shasum bfd9402cf3df12c4a4c310c79f99a3dde13d34a7
remote: npm info shasum /tmp/npm-22659/1388985458038-0.4127826376352459/tmp.tgz
remote: npm info shasum be3e5382fc02b6d6324956ac1af98aa98b08534c
remote: npm info shasum /tmp/npm-22659/1388985458052-0.9430954612325877/tmp.tgz
remote: npm info shasum 06e1ea8082c2cb14e39806e22e2f6f757f92af39
remote: npm info shasum /tmp/npm-22659/1388985458054-0.2448036188725382/tmp.tgz
remote: npm info shasum 44e072148af01e6e8e24afbf12690d68ae698ecb
remote: npm info shasum /tmp/npm-22659/1388985458092-0.6134958821348846/tmp.tgz
remote: npm info shasum be70d8d1be01de61821af13780b50345a4f71abd
remote: npm info shasum /tmp/npm-22659/1388985458053-0.07330997195094824/tmp.tgz
remote: npm info shasum 2ff0980c924cf81d0b5d1fb601177cb8bb56c0d0
remote: npm info shasum /tmp/npm-22659/1388985458091-0.30763942655175924/tmp.tgz
remote: npm info shasum 335d429eefd21b7bacf2e9c922a8d2bd14a30e4f
remote: npm info shasum /tmp/npm-22659/1388985458069-0.19154447154141963/tmp.tgz
remote: npm info shasum 4e59c21cbf26532c8da248f5af3910a38fc2a2df
remote: npm info shasum /var/lib/openshift/52ca3c1fd8f3b71c46000043/.npm/methods/0.1.0/package.tgz
remote: npm info shasum 7b27a68d7a86e72f51ec712a7d673c8103c49b45
remote: npm info shasum /var/lib/openshift/52ca3c1fd8f3b71c46000043/.npm/merge-descriptors/0.0.1/package.tgz
remote: npm info shasum ca5ca5575046d6c13f15ffc0f39702e7cccc849a
remote: npm info shasum /var/lib/openshift/52ca3c1fd8f3b71c46000043/.npm/debug/0.7.4/package.tgz
remote: npm info shasum d150acafd4d184521477d3f23fa200795e207cce
remote: npm info shasum /var/lib/openshift/52ca3c1fd8f3b71c46000043/.npm/range-parser/0.0.4/package.tgz
remote: npm info shasum 33dd2a656ebb479ade320ea09dd311046c890286
remote: npm info shasum /var/lib/openshift/52ca3c1fd8f3b71c46000043/.npm/cookie-signature/1.0.1/package.tgz
remote: npm info shasum 857eb2a222b4bbd19a1ba78a3b5462e69be362a7
remote: npm info shasum /var/lib/openshift/52ca3c1fd8f3b71c46000043/.npm/fresh/0.2.0/package.tgz
remote: npm info shasum 770ee0e4ca72abe361b138976a58a2b7c47833b3
remote: npm info shasum /var/lib/openshift/52ca3c1fd8f3b71c46000043/.npm/buffer-crc32/0.2.1/package.tgz
remote: npm info shasum 6d001ffb8461923922201776c94ae566fc7347ce
remote: npm info shasum /var/lib/openshift/52ca3c1fd8f3b71c46000043/.npm/cookie/0.1.0/package.tgz
remote: npm info shasum ba14ba40f375c0e52a13b3f768372929a1b5c861
remote: npm info shasum /var/lib/openshift/52ca3c1fd8f3b71c46000043/.npm/send/0.1.4/package.tgz
remote: npm info shasum b581d41ff665b5ac782450a4ab8b43a209fc495d
remote: npm info shasum /var/lib/openshift/52ca3c1fd8f3b71c46000043/.npm/commander/1.3.2/package.tgz
remote: npm info shasum 12142098e786725b99fb464176b9995dff16f3a7
remote: npm info shasum /var/lib/openshift/52ca3c1fd8f3b71c46000043/.npm/mkdirp/0.3.5/package.tgz
remote: npm info shasum 4567537e479aeeaa1bdfb02c40ef191104c9b78a
remote: npm info shasum /var/lib/openshift/52ca3c1fd8f3b71c46000043/.npm/connect/2.12.0/package.tgz
remote: npm info install methods.0 into /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express
remote: npm info install merge-descriptors.1 into /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express
remote: npm info install debug.4 into /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express
remote: npm info install range-parser.4 into /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express
remote: npm info install cookie-signature.1 into /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express
remote: npm info install fresh.0 into /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express
remote: npm info install buffer-crc32.1 into /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express
remote: npm info install cookie.0 into /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express
remote: npm info install send.4 into /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express
remote: npm info install commander.2 into /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express
remote: npm info install mkdirp.5 into /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express
remote: npm info install connect.0 into /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express
remote: npm info installOne methods.0
remote: npm info installOne merge-descriptors.1
remote: npm info installOne debug.4
remote: npm info installOne range-parser.4
remote: npm info installOne cookie-signature.1
remote: npm info installOne fresh.0
remote: npm info installOne buffer-crc32.1
remote: npm info installOne cookie.0
remote: npm info installOne send.4
remote: npm info installOne commander.2
remote: npm info installOne mkdirp.5
remote: npm info installOne connect.0
remote: npm WARN engine connect.0: wanted: {"node":">= 0.8.0"} (current: {"node":"0.6.20","npm":"1.1.37"})
remote: npm info /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/methods unbuild
remote: npm info /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/merge-descriptors unbuild
remote: npm info /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/debug unbuild
remote: npm info /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/range-parser unbuild
remote: npm info /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/cookie-signature unbuild
remote: npm info /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/fresh unbuild
remote: npm info /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/buffer-crc32 unbuild
remote: npm info /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/cookie unbuild
remote: npm info /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/send unbuild
remote: npm info /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/commander unbuild
remote: npm info /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/mkdirp unbuild
remote: npm info /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect unbuild
remote: npm info preinstall methods.0
remote: npm info build /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/methods
remote: npm info linkStuff methods.0
remote: npm info install methods.0
remote: npm info preinstall debug.4
remote: npm info postinstall methods.0
remote: npm info build /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/debug
remote: npm info linkStuff debug.4
remote: npm info preinstall merge-descriptors.1
remote: npm info install debug.4
remote: npm info postinstall debug.4
remote: npm info build /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/merge-descriptors
remote: npm info linkStuff merge-descriptors.1
remote: npm info preinstall range-parser.4
remote: npm info install merge-descriptors.1
remote: npm info preinstall cookie-signature.1
remote: npm info postinstall merge-descriptors.1
remote: npm info preinstall fresh.0
remote: npm info build /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/range-parser
remote: npm info linkStuff range-parser.4
remote: npm info build /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/cookie-signature
remote: npm info install range-parser.4
remote: npm info linkStuff cookie-signature.1
remote: npm info install cookie-signature.1
remote: npm info postinstall range-parser.4
remote: npm info build /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/fresh
remote: npm info linkStuff fresh.0
remote: npm info postinstall cookie-signature.1
remote: npm info install fresh.0
remote: npm info postinstall fresh.0
remote: npm info preinstall buffer-crc32.1
remote: npm info build /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/buffer-crc32
remote: npm info linkStuff buffer-crc32.1
remote: npm info install buffer-crc32.1
remote: npm info postinstall buffer-crc32.1
remote: npm info preinstall cookie.0
remote: npm info build /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/cookie
remote: npm info linkStuff cookie.0
remote: npm info install cookie.0
remote: npm info preinstall send.4
remote: npm info postinstall cookie.0
remote: npm info preinstall commander.2
remote: npm info retry registry request attempt 1 at 00:17:40
remote: npm http GET https://registry.npmjs.org/mime
remote: npm info retry registry request attempt 1 at 00:17:40
remote: npm http GET https://registry.npmjs.org/keypress
remote: npm info preinstall mkdirp.5
remote: npm info build /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/mkdirp
remote: npm info linkStuff mkdirp.5
remote: npm http 200 https://registry.npmjs.org/mime
remote: npm info install mkdirp.5
remote: npm info postinstall mkdirp.5
remote: npm http 200 https://registry.npmjs.org/keypress
remote: npm info retry fetch attempt 1 at 00:17:40
remote: npm http GET https://registry.npmjs.org/mime/-/mime-1.2.11.tgz
remote: npm info retry fetch attempt 1 at 00:17:40
remote: npm http GET https://registry.npmjs.org/keypress/-/keypress-0.1.0.tgz
remote: npm http 200 https://registry.npmjs.org/mime/-/mime-1.2.11.tgz
remote: npm info shasum 58203eed86e3a5ef17aed2b7d9ebd47f0a60dd10
remote: npm info shasum /tmp/npm-22659/1388985460321-0.480583248892799/tmp.tgz
remote: npm http 200 https://registry.npmjs.org/keypress/-/keypress-0.1.0.tgz
remote: npm info shasum 4a3188d4291b66b4f65edb99f806aa9ae293592a
remote: npm info shasum /tmp/npm-22659/1388985460331-0.3693780687171966/tmp.tgz
remote: npm info shasum f6413fa8e6aeeadf2492952b4f4f886621ede11f
remote: npm info shasum /var/lib/openshift/52ca3c1fd8f3b71c46000043/.npm/keypress/0.1.0/package.tgz
remote: npm info install keypress.0 into /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/commander
remote: npm info installOne keypress.0
remote: npm info /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/commander/node_modules/keypress unbuild
remote: npm info preinstall keypress.0
remote: npm info build /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/commander/node_modules/keypress
remote: npm info linkStuff keypress.0
remote: npm info install keypress.0
remote: npm info postinstall keypress.0
remote: npm info build /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/commander
remote: npm info linkStuff commander.2
remote: npm info install commander.2
remote: npm info postinstall commander.2
remote: npm info shasum a0b3d24ef15b654759e962e4add318923e49be9b
remote: npm info shasum /var/lib/openshift/52ca3c1fd8f3b71c46000043/.npm/mime/1.2.11/package.tgz
remote: npm info install mime.11 into /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/send
remote: npm info installOne mime.11
remote: npm info /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/send/node_modules/mime unbuild
remote: npm info preinstall connect.0
remote: npm info preinstall mime.11
remote: npm info build /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/send/node_modules/mime
remote: npm info linkStuff mime.11
remote: npm info install mime.11
remote: npm info retry registry request attempt 1 at 00:17:40
remote: npm http GET https://registry.npmjs.org/batch/0.5.0
remote: npm info postinstall mime.11
remote: npm info build /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/send
remote: npm info linkStuff send.4
remote: npm info install send.4
remote: npm info retry registry request attempt 1 at 00:17:40
remote: npm http GET https://registry.npmjs.org/qs/0.6.6
remote: npm info retry registry request attempt 1 at 00:17:40
remote: npm http GET https://registry.npmjs.org/bytes/0.2.1
remote: npm info retry registry request attempt 1 at 00:17:40
remote: npm http GET https://registry.npmjs.org/pause/0.0.1
remote: npm info retry registry request attempt 1 at 00:17:40
remote: npm http GET https://registry.npmjs.org/uid2/0.0.3
remote: npm info postinstall send.4
remote: npm info retry registry request attempt 1 at 00:17:40
remote: npm http GET https://registry.npmjs.org/raw-body/1.1.2
remote: npm info retry registry request attempt 1 at 00:17:40
remote: npm http GET https://registry.npmjs.org/negotiator/0.3.0
remote: npm info retry registry request attempt 1 at 00:17:40
remote: npm http GET https://registry.npmjs.org/multiparty/2.2.0
remote: npm http 200 https://registry.npmjs.org/uid2/0.0.3
remote: npm info retry fetch attempt 1 at 00:17:41
remote: npm http GET https://registry.npmjs.org/uid2/-/uid2-0.0.3.tgz
remote: npm http 200 https://registry.npmjs.org/bytes/0.2.1
remote: npm info retry fetch attempt 1 at 00:17:41
remote: npm http GET https://registry.npmjs.org/bytes/-/bytes-0.2.1.tgz
remote: npm http 200 https://registry.npmjs.org/batch/0.5.0
remote: npm http 200 https://registry.npmjs.org/qs/0.6.6
remote: npm http 200 https://registry.npmjs.org/pause/0.0.1
remote: npm http 200 https://registry.npmjs.org/negotiator/0.3.0
remote: npm http 200 https://registry.npmjs.org/raw-body/1.1.2
remote: npm http 200 https://registry.npmjs.org/bytes/-/bytes-0.2.1.tgz
remote: npm http 200 https://registry.npmjs.org/uid2/-/uid2-0.0.3.tgz
remote: npm info retry fetch attempt 1 at 00:17:41
remote: npm info retry fetch attempt 1 at 00:17:41
remote: npm info retry fetch attempt 1 at 00:17:41
remote: npm info shasum 555b08abcb063f8975905302523e4cd4ffdfdf31
remote: npm info shasum /tmp/npm-22659/1388985461089-0.2705948401708156/tmp.tgz
remote: npm info shasum 483126e11774df2f71b8b639dcd799c376162b82
remote: npm info shasum /tmp/npm-22659/1388985461057-0.561914429301396/tmp.tgz
remote: npm http GET https://registry.npmjs.org/batch/-/batch-0.5.0.tgz
remote: npm http GET https://registry.npmjs.org/qs/-/qs-0.6.6.tgz
remote: npm http 200 https://registry.npmjs.org/multiparty/2.2.0
remote: npm http GET https://registry.npmjs.org/pause/-/pause-0.0.1.tgz
remote: npm info retry fetch attempt 1 at 00:17:41
remote: npm info retry fetch attempt 1 at 00:17:41
remote: npm http GET https://registry.npmjs.org/negotiator/-/negotiator-0.3.0.tgz
remote: npm http GET https://registry.npmjs.org/raw-body/-/raw-body-1.1.2.tgz
remote: npm http 200 https://registry.npmjs.org/batch/-/batch-0.5.0.tgz
remote: npm http 200 https://registry.npmjs.org/qs/-/qs-0.6.6.tgz
remote: npm info shasum fd2e05a7a5d696b4db9314013e285d8ff3557ec3
remote: npm info shasum /tmp/npm-22659/1388985461152-0.24446312338113785/tmp.tgz
remote: npm info shasum 6e015098ff51968b8a3c819001d5f2c89bc4b107
remote: npm info shasum /tmp/npm-22659/1388985461152-0.04267485812306404/tmp.tgz
remote: npm info retry fetch attempt 1 at 00:17:41
remote: npm http 200 https://registry.npmjs.org/pause/-/pause-0.0.1.tgz
remote: npm http GET https://registry.npmjs.org/multiparty/-/multiparty-2.2.0.tgz
remote: npm info shasum 1d408b3fdb76923b9543d96fb4c9dfd535d9cb5d
remote: npm info shasum /tmp/npm-22659/1388985461153-0.6596942748874426/tmp.tgz
remote: npm http 200 https://registry.npmjs.org/raw-body/-/raw-body-1.1.2.tgz
remote: npm http 200 https://registry.npmjs.org/negotiator/-/negotiator-0.3.0.tgz
remote: npm http 200 https://registry.npmjs.org/multiparty/-/multiparty-2.2.0.tgz
remote: npm info shasum c74b3004dea5defd1696171106ac740ec31d62be
remote: npm info shasum /tmp/npm-22659/1388985461195-0.7553966192062944/tmp.tgz
remote: npm info shasum 706d692efeddf574d57ea9fb1ab89a4fa7ee8f60
remote: npm info shasum /tmp/npm-22659/1388985461195-0.34589289920404553/tmp.tgz
remote: npm WARN package.json uid2.3 No README.md file found!
remote: npm info shasum 176458c8f05de0699ed0aa00c197587c040b15a9
remote: npm info shasum /var/lib/openshift/52ca3c1fd8f3b71c46000043/.npm/uid2/0.0.3/package.tgz
remote: npm info shasum fb9a6fc0293b0b92f0569b815b9b0597d2c67e9b
remote: npm info shasum /var/lib/openshift/52ca3c1fd8f3b71c46000043/.npm/bytes/0.2.1/package.tgz
remote: npm info shasum 059d1d2cbe08b7611e7648026646b7f459ee483e
remote: npm info shasum /var/lib/openshift/52ca3c1fd8f3b71c46000043/.npm/pause/0.0.1/package.tgz
remote: npm info shasum a567c2af000ad22dc8f2a653d91978ae1f5316f4
remote: npm info shasum /tmp/npm-22659/1388985461231-0.10303289629518986/tmp.tgz
remote: npm info shasum ff25d8eaa57fc56d8ceb9a3cd67c7af1d584c1e2
remote: npm info shasum /var/lib/openshift/52ca3c1fd8f3b71c46000043/.npm/qs/0.6.6/package.tgz
remote: npm info shasum c01fa11852cfb14ce464dce293bf9ef5bdbcac48
remote: npm info shasum /var/lib/openshift/52ca3c1fd8f3b71c46000043/.npm/batch/0.5.0/package.tgz
remote: npm info shasum 4585f2c7bf67fa2f152c258e9963c6eff338f9b1
remote: npm info shasum /var/lib/openshift/52ca3c1fd8f3b71c46000043/.npm/raw-body/1.1.2/package.tgz
remote: npm info shasum bec5b15edfedcfcf1950422bc0241d16d028a4f0
remote: npm info shasum /var/lib/openshift/52ca3c1fd8f3b71c46000043/.npm/negotiator/0.3.0/package.tgz
remote: npm info shasum 9e9b6b99556418dfa0761ed53b3a65d71e4b84d6
remote: npm info shasum /var/lib/openshift/52ca3c1fd8f3b71c46000043/.npm/multiparty/2.2.0/package.tgz
remote: npm info install uid2.3 into /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect
remote: npm info install bytes.1 into /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect
remote: npm info install pause.1 into /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect
remote: npm info install qs.6 into /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect
remote: npm info install batch.0 into /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect
remote: npm info install raw-body.2 into /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect
remote: npm info install negotiator.0 into /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect
remote: npm info install multiparty.0 into /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect
remote: npm info installOne uid2.3
remote: npm info installOne bytes.1
remote: npm info installOne pause.1
remote: npm info installOne qs.6
remote: npm info installOne batch.0
remote: npm info installOne raw-body.2
remote: npm WARN engine raw-body.2: wanted: {"node":">= 0.8.0"} (current: {"node":"0.6.20","npm":"1.1.37"})
remote: npm info installOne negotiator.0
remote: npm info installOne multiparty.0
remote: npm WARN engine multiparty.0: wanted: {"node":">=0.8.0"} (current: {"node":"0.6.20","npm":"1.1.37"})
remote: npm info /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect/node_modules/uid2 unbuild
remote: npm info /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect/node_modules/bytes unbuild
remote: npm info /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect/node_modules/pause unbuild
remote: npm info /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect/node_modules/qs unbuild
remote: npm info /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect/node_modules/batch unbuild
remote: npm info /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect/node_modules/raw-body unbuild
remote: npm info /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect/node_modules/negotiator unbuild
remote: npm info /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect/node_modules/multiparty unbuild
remote: npm info preinstall uid2.3
remote: npm info build /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect/node_modules/uid2
remote: npm info linkStuff uid2.3
remote: npm info install uid2.3
remote: npm info postinstall uid2.3
remote: npm info preinstall pause.1
remote: npm info build /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect/node_modules/pause
remote: npm info preinstall qs.6
remote: npm info linkStuff pause.1
remote: npm info preinstall bytes.1
remote: npm info install pause.1
remote: npm info postinstall pause.1
remote: npm info build /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect/node_modules/qs
remote: npm info linkStuff qs.6
remote: npm info build /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect/node_modules/bytes
remote: npm info install qs.6
remote: npm info linkStuff bytes.1
remote: npm info install bytes.1
remote: npm info postinstall qs.6
remote: npm info preinstall raw-body.2
remote: npm info postinstall bytes.1
remote: npm info preinstall batch.0
remote: npm info build /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect/node_modules/raw-body
remote: npm info linkStuff raw-body.2
remote: npm info install raw-body.2
remote: npm info build /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect/node_modules/batch
remote: npm info postinstall raw-body.2
remote: npm info linkStuff batch.0
remote: npm info install batch.0
remote: npm info postinstall batch.0
remote: npm info preinstall negotiator.0
remote: npm info build /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect/node_modules/negotiator
remote: npm info linkStuff negotiator.0
remote: npm info install negotiator.0
remote: npm info postinstall negotiator.0
remote: npm info preinstall multiparty.0
remote: npm info retry registry request attempt 1 at 00:17:46
remote: npm http GET https://registry.npmjs.org/readable-stream
remote: npm info retry registry request attempt 1 at 00:17:46
remote: npm http GET https://registry.npmjs.org/stream-counter
remote: npm http 200 https://registry.npmjs.org/stream-counter
remote: npm info retry fetch attempt 1 at 00:17:46
remote: npm http GET https://registry.npmjs.org/stream-counter/-/stream-counter-0.2.0.tgz
remote: npm http 200 https://registry.npmjs.org/stream-counter/-/stream-counter-0.2.0.tgz
remote: npm http 200 https://registry.npmjs.org/readable-stream
remote: npm info shasum ded266556319c8b0e222812b9cf3b26fa7d947de
remote: npm info shasum /tmp/npm-22659/1388985466851-0.534505702322349/tmp.tgz
remote: npm info retry fetch attempt 1 at 00:17:46
remote: npm http GET https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.9.tgz
remote: npm http 200 https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.9.tgz
remote: npm info shasum d87130fbf8f9ee9c3b4058b3c58a3e30db2fcfdd
remote: npm info shasum /tmp/npm-22659/1388985466929-0.8092004398349673/tmp.tgz
remote: npm info shasum 481d6f5001b096f7d27d56718e17ed359d34a998
remote: npm info shasum /var/lib/openshift/52ca3c1fd8f3b71c46000043/.npm/stream-counter/0.2.0/package.tgz
remote: npm info shasum 2fb655a0a5a97b99c3bcddd3050e2361555430af
remote: npm info shasum /var/lib/openshift/52ca3c1fd8f3b71c46000043/.npm/readable-stream/1.1.9/package.tgz
remote: npm info install stream-counter.0 into /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect/node_modules/multiparty
remote: npm info install readable-stream.9 into /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect/node_modules/multiparty
remote: npm info installOne stream-counter.0
remote: npm WARN engine stream-counter.0: wanted: {"node":">=0.8.0"} (current: {"node":"0.6.20","npm":"1.1.37"})
remote: npm info installOne readable-stream.9
remote: npm info /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect/node_modules/multiparty/node_modules/stream-counter unbuild
remote: npm info /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect/node_modules/multiparty/node_modules/readable-stream unbuild
remote: npm info preinstall stream-counter.0
remote: npm info build /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect/node_modules/multiparty/node_modules/stream-counter
remote: npm info linkStuff stream-counter.0
remote: npm info install stream-counter.0
remote: npm info postinstall stream-counter.0
remote: npm info preinstall readable-stream.9
remote: npm info retry registry request attempt 1 at 00:17:48
remote: npm http GET https://registry.npmjs.org/core-util-is
remote: npm info retry registry request attempt 1 at 00:17:48
remote: npm http GET https://registry.npmjs.org/debuglog/0.0.2
remote: npm http 200 https://registry.npmjs.org/core-util-is
remote: npm http 200 https://registry.npmjs.org/debuglog/0.0.2
remote: npm info retry fetch attempt 1 at 00:17:48
remote: npm http GET https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.0.tgz
remote: npm info retry fetch attempt 1 at 00:17:48
remote: npm http GET https://registry.npmjs.org/debuglog/-/debuglog-0.0.2.tgz
remote: npm http 200 https://registry.npmjs.org/debuglog/-/debuglog-0.0.2.tgz
remote: npm info shasum 6c0dcf07e2c3f74524629b741668bd46c7b362eb
remote: npm info shasum /tmp/npm-22659/1388985468561-0.3347866104450077/tmp.tgz
remote: npm http 200 https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.0.tgz
remote: npm info shasum 740c74c400e72707b95cc75d509543f8ad7f83de
remote: npm info shasum /tmp/npm-22659/1388985468555-0.7142299325205386/tmp.tgz
remote: npm info shasum 3343744abfc0ffa61c9860812a6eda250864a5d5
remote: npm info shasum /var/lib/openshift/52ca3c1fd8f3b71c46000043/.npm/debuglog/0.0.2/package.tgz
remote: npm info shasum 1abb5a3477218e0e2406f9c688ff8ff3de0b0086
remote: npm info shasum /var/lib/openshift/52ca3c1fd8f3b71c46000043/.npm/core-util-is/1.0.0/package.tgz
remote: npm info install debuglog.2 into /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect/node_modules/multiparty/node_modules/readable-stream
remote: npm info install core-util-is.0 into /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect/node_modules/multiparty/node_modules/readable-stream
remote: npm info installOne debuglog.2
remote: npm info installOne core-util-is.0
remote: npm info /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/debuglog unbuild
remote: npm info /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/core-util-is unbuild
remote: npm info preinstall debuglog.2
remote: npm info build /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/debuglog
remote: npm info linkStuff debuglog.2
remote: npm info install debuglog.2
remote: npm info postinstall debuglog.2
remote: npm info preinstall core-util-is.0
remote: npm info build /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/core-util-is
remote: npm info linkStuff core-util-is.0
remote: npm info install core-util-is.0
remote: npm info postinstall core-util-is.0
remote: npm info build /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect/node_modules/multiparty/node_modules/readable-stream
remote: npm info linkStuff readable-stream.9
remote: npm info install readable-stream.9
remote: npm info postinstall readable-stream.9
remote: npm info build /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect/node_modules/multiparty
remote: npm info linkStuff multiparty.0
remote: npm info install multiparty.0
remote: npm info postinstall multiparty.0
remote: npm info build /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express/node_modules/connect
remote: npm info linkStuff connect.0
remote: npm info install connect.0
remote: npm info postinstall connect.0
remote: npm info build /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo/node_modules/express
remote: npm info linkStuff express.7
remote: npm info install express.7
remote: npm info postinstall express.7
remote: npm info build /var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo
remote: npm info linkStuff OpenShift-Sample-App.0
remote: npm info install OpenShift-Sample-App.0
remote: npm info postinstall OpenShift-Sample-App.0
remote: express.7 node_modules/express
remote: ├── methods.0
remote: ├── debug.4
remote: ├── merge-descriptors.1
remote: ├── range-parser.4
remote: ├── cookie-signature.1
remote: ├── fresh.0
remote: ├── buffer-crc32.1
remote: ├── cookie.0
remote: ├── mkdirp.5
remote: ├── commander.2 (keypress.0)
remote: ├── send.4 (mime.11)
remote: └── connect.0 (uid2.3, pause.1, qs.6, bytes.1, raw-body.2, batch.0, negotiator.0, multiparty.0)
remote: npm info ok 
remote: Preparing build for deployment
remote: Deployment id is 1fbcabe5
remote: Activating deployment
remote: Starting NodeJS cartridge
remote: 
remote: DEBUG: Running node-supervisor with
remote: DEBUG:   program 'server.js'
remote: DEBUG:   --watch '.'
remote: DEBUG:   --ignore 'undefined'
remote: DEBUG:   --extensions 'node|js|coffee'
remote: DEBUG:   --exec 'node'
remote: 
remote: DEBUG: Starting child process with 'node server.js'
remote: DEBUG: Watching directory '/var/lib/openshift/52ca3c1fd8f3b71c46000043/app-root/runtime/repo' for changes.
remote: DEBUG: Warning: express.createServer() is deprecated, express
remote: 
remote: DEBUG: applications no longer inherit from http.Server,
remote: 
remote: DEBUG: please use:
remote: 
remote: DEBUG: 
remote: 
remote: DEBUG:   var express = require("express");
remote: 
remote: DEBUG:   var app = express();
remote: 
remote: DEBUG: 
remote: 
remote: Mon Jan 06 2014 00:17:51 GMT-0500 (EST): Node server started on 127.1.245.129:8080 ...
remote: Result: success
remote: Activation status: success
remote: Deployment completed with status: success
To ssh://52ca3c1fd8f3b71c46000043.rhcloud.com/~/git/mynodejs06.git/
   237042c..ffa493a  master -> master


Note You need to log in before you can comment on or make changes to this bug.