Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save swashcap/13f8f839c69340c48352ea821dc1dad6 to your computer and use it in GitHub Desktop.
Save swashcap/13f8f839c69340c48352ea821dc1dad6 to your computer and use it in GitHub Desktop.
> coinstac@2.0.0 lint /home/rof/src/github.com/MRN-Code/coinstac
> eslint '**/*.js' '**/bin/*'
> coinstac@2.0.0 test /home/rof/src/github.com/MRN-Code/coinstac
> lerna run test --concurrency=1
Lerna v2.0.0-beta.32
> coinstac-client-core@2.5.0 test /home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-client-core
> npm run clean && nyc --reporter=lcov --check-coverage --functions=70 --branches=80 --lines 87 node test
> coinstac-client-core@2.5.0 clean /home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-client-core
> rm -rf .nyc_output coverage .tmp
TAP version 13
# ModelService basic
ok 1 ModelService is fn
ok 2 explodes without content
# ModelService extension
ok 3 extension GO!
# ModelService validation params
ok 4 passes callback param
ok 5 rejects without parameters
ok 6 passes onlyFields param
# ModelService validation
ok 7 passes props to validator
ok 8 passes validation error
ok 9 passes validation value
# AuthenticationService :: constructor
ok 10 extends Halfpenny
# AuthenticationService :: user storage
ok 11 sets empty user
ok 12 retrieves set user
ok 13 clears stored user
# AuthenticationService :: database credentials storage
ok 14 sets empty database credentials
ok 15 retrieves set database credentials
ok 16 clears database credentials
# AuthenticationService :: login/logout`
ok 17 calls Halfpenny login
ok 18 passes login response
ok 19 sets user on login
ok 20 sets database credentials on login
ok 21 calls Halfpenny logout
ok 22 clears database credentials on logout
ok 23 clears user on logout
# ComputationService :: modelServiceHooks
ok 24 returns db name
ok 25 returns Computation model
# ComputationService :: canStartComputation
ok 26 rejects when consortium lacks active computation ID
ok 27 rejects when not a consortium owner
ok 28 rejects when a run is active
ok 29 resolves when conditions suitable
# ComputationService :: doTriggerRunner errors
ok 30 rejects without consortium ID
ok 31 rejects without project ID
ok 32 rejects without run ID
ok 33 rejects with non-equal computation inputs
# ComputationService :: doTriggerRunner
ok 34 retrieves consortium via consortiumId
ok 35 retrieves project via projectId
ok 36 passes remote computation result
ok 37 sets computation and consortium IDs on remote computation result
ok 38 sets run ID on remote computation result
ok 39 passes transformed project to pools triggerRunner method
ok 40 passes pools triggerRunners response
# ComputationService :: kickoff
ok 41 retrieves consortium by passed ID
ok 42 passes a run ID
ok 43 returns doTrigger's response
# ComputationService :: joinRun
ok 44 passes args to doTrigger
ok 45 passes doTrigger's response
# ConsortiaService - Model Service methods
ok 46 service persists models
ok 47 getBy proxy
ok 48 doc generated
ok 49 teardown
# ConsortiaService - getUserConsortia
ok 50 getUserConsortia
ok 51 teardown
# ProjectService#getCSV
ok 52 reads file via passed arg
ok 53 parses and returns CSV string
# ProjectService#getFilesFromMetadata
ok 54 Gets files from metadata
# ProjectService#setMetaContents errors
ok 55 Rejects without project ID
ok 56 Rejects without project consortium ID
ok 57 Rejects without covariates index
ok 58 Rejects without active computation inputs
ok 59 Rejects with missing file
ok 60 errors with bad metaFile to covariate mapping
ok 61 errors with bad metaFile column
# ProjectService - setMetaContents
ok 62 gets project by ID
ok 63 gets consortium by ID
ok 64 adds tags to project's files
# ProjectService - addFiles/removeFiles
ok 65 files empty on first persist
ok 66 no files added
ok 67 files added
ok 68 file add request ignored on duplicate filename
ok 69 file removed
ok 70 teardown
# ProjectSerice - gets stats
ok 71 passes array param
ok 72 passes fileStats#prepare response
ok 73 changes single items to array
# ProjectService - database listeners
ok 74 Rejects without callback
ok 75 creates projects db listener
ok 76 adds projects db listener
ok 77 adds listener to projects database
ok 78 adds project with consortium ID
ok 79 adds consortium ID to listeners
ok 80 Doesnt add project without consortium ID
# ProjectService - database listener events
ok 81 doesnt call callback initially
ok 82 doesnt alter internal store
ok 83 only fires callback once per event
ok 84 fires callback upon change
ok 85 fires callback upon delete
ok 86 adds projects consortium db listener
# ProjectService - stat all files
ok 87 stats every file
ok 88 adds bad files to error message
ok 89 resolves non-absolute file paths
# CoinstacClient - constructor
ok 90 requires opts
ok 91 has appDirectory
ok 92 teardown
# CoinstacClient - logger injections
ok 93 logger injection ok
ok 94 teardown
# CoinstacClient - initialize errors
ok 95 rejects with bad this
ok 96 rejects without params
ok 97 rejects with missing credentials
ok 98 rejects with empty credentials
# CoinstacClient - initialize process
ok 99 returns user
ok 100 upserts application directory
ok 101 sets sub-api services
ok 102 calls login with credentials
ok 103 calls init computation registry
ok 104 calls init pool
ok 105 teardown
# CoinstacClient - teardown process
ok 106 logs out
ok 107 destroys pool when it exists
ok 108 deletes sub-api services
ok 109 destroys database registry when pool doesn't exist
# CoinstacClient - auth initialization
ok 110 calls create user
ok 111 calls login
1..111
# tests 111
# pass 111
# ok
> coinstac-common@2.5.0 test /home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-common
> nyc --reporter=lcov --check-coverage --functions=90 --branches=75 node test/
TAP version 13
# model::CommandComputation constructor
ok 1 requires type: "cmd"
ok 2 throws without cwd
# CommandComputation#run
ok 3 spawns with expected params
ok 4 returns stdout response
ok 5 adds class args property to spawn params
# CommandComputation#run verbose logging
ok 6 logs command
ok 7 logs stderr
ok 8 doesn't log with no stderr
ok 9 logs with stderr
# CommandComputation#run errors
ok 10 Rejects when spawn throws
ok 11 Rejects when command emits error
ok 12 Rejects with non-zero exit code
ok 13 Rejects with malformed JSON
# constructor - basic
ok 14 fully loaded ComputationResult ok, 1
ok 15 fully loaded ComputationResult ok, 2
ok 16 bogus data rejected (.pipeline)
# constructor - deny runId set
ok 17 forbids setting of runId
# model::Computation
ok 18 throws without type
ok 19 throws indicating Computation is an abstract type
# model::Computation.factory
ok 20 computations generated from single, raw comp
ok 21 computations generated from arr of raw comps
ok 22 subtypes generated
ok 23 computations generated from single, raw comp
ok 24 errors when invalid raw computation set requested
# model::JavascriptComputation constructor
ok 25 throws without fn
# model::JavascriptComputation run (basic-1)
ok 26 computation result passed per expectation
# model::JavascriptComputation run (basic-2)
ok 27 computation inputs passed per expectation
# constructor - runId
ok 28 valid constructor options ok
ok 29 errors on bogus -suffix trailing username
ok 30 errors on missing username
# constructor - runId
ok 31 valid constructor options ok
ok 32 true
ok 33 errors on bogus -suffix trailing content
# model::base - constructor
ok 34 constructs with valid input
ok 35 constructs with `any` input (base schema empty)
ok 36 base serialize ok (only schema attrs copied)
# model::consortium - hasMember
ok 37 Finds existing members
ok 38 Non-existant memeber
# model::consortium - isOwnedBy
ok 39 returns false if no owner
ok 40 returns true if is an owner
ok 41 returns false if is not an owner
# Consortium.compareUsernames
ok 42 matching usernames
ok 43 whitespace/case diff
ok 44 different usernames
# DBListener :: destroy
ok 45 DBListener completely destroyed
# model::DecentralizedComputation constructor errors
ok 46 throws with no name
ok 47 throws with no version
ok 48 throws with no local
ok 49 throws with no remote
ok 50 throws with bad `setup`
# model::DecentralizedComputation constructor
ok 51 should be truthy
# model::DecentralizedComputation - getComputationDocument
ok 52 returns a POJO
ok 53 only outputs specific props
# model::base - extended class
ok 54 schema validated using base.prototype.validate
ok 55 constructs with valid input
ok 56 base serialize ok (only schema attrs copied) (full attr set)
ok 57 base .toJSON ok (full attr set)
ok 58 base serialize ok (only schema attrs copied) (incomplete attr set)
ok 59 nested model serialization
ok 60 field validation called on change
ok 61 called with partial model values, { attrKey: attrValue } when validating only fields
ok 62 called with { field: true } to validate only fields
# perf - reality check
ok 63 no time diff takes more than 0 ms and less than 1ms
# perf - pojo model time diff
ok 64 heavy models generated in < 5ms
# model::pouch-document - constructor
ok 65 constructs with valid input
ok 66 attr level types enforced (Base test, easier in instance w/ attrs
ok 67 errors on incorrectly formatted content - _id
# model::project
ok 68 serializes project
# model::Pipeline constructor - basics
ok 69 constructor attrs present
ok 70 1+ computation required
ok 71 inProgress defaults without explicit set
ok 72 step defaults without explicit set
# model::Pipeline run - basic (single, `run` error)
ok 73 run error propogated, p1
ok 74 run error propogated, p2
# model::Pipeline run - basic (single comp, error, invalid opts)
ok 75 errors without `run` opts
# model::Pipeline run - basic (forbid parallel running)
ok 76 concurrent pipeline running forbidden
ok 77 inProgress error explains concurrency
# model::Pipeline run - basic (single)
ok 78 computations not serialized
ok 79 basic run returns computation result
# model::Pipeline run - basic (double, immediate stepping w/out next)
ok 80 first cb has first result
ok 81 pipeline has progressed
ok 82 pipeline shows in progress
ok 83 second cb has second result using result from prior `run`
ok 84 pipeline has not progressed passed final step
ok 85 pipeline not in progress when not proceeding
# model::Pipeline run - basic (double, immediate stepping w/ next)
ok 86 second cb has second result
ok 87 pipeline not in progress when not proceeding
# model::Pipeline maybeIncrementStep - basic (double, `next` errors pre-run)
ok 88 `next` errors propogated, p1
ok 89 `next` errors propogated, p2
# model::Pipeline maybeIncrementStep - basic (double, `next` errors post-run)
ok 90 `next` errors propogated post-run, p1
ok 91 `next` errors propogated post-run, p2
# model::Pipeline run - intermediate (double, user event stepping)
ok 92 pipeline does not progress when `next` returns falsy
ok 93 result correct even when user does not trigger `next`
ok 94 pipeline steps after user intent triggers `next`
ok 95 result is as expected after user triggers pipeline `next`
# inputs plugin :: local has no inputs
ok 96 doesn't return doc
ok 97 doesn't force save
# inputs plugin :: local has no local inputs
ok 98 doesn't return doc
ok 99 doesn't force save
# inputs plugin :: local has remote and has no local inputs
ok 100 returns doc
ok 101 sets inputs plugin state on result doc
ok 102 calls force save
# inputs plugin :: remote has inputs
ok 103 doesn't return doc
ok 104 doesn't force save
# inputs plugin :: no local inputs
ok 105 doesn't return doc
ok 106 doesn't force save
# inputs plugin :: local has inputs
ok 107 returns doc
ok 108 sets runInput to compResult
ok 109 calls force save
# LocalPipelineRunner constructor - basic
ok 110 basic instantiation ok
# LocalPipelineRunner run - basic
ok 111 serialized pipeline state persists
ok 112 computation result stashed to `.data`
ok 113 result persisted
ok 114 exactly one result persisted
# run - basic - input errors
ok 115 errors without remote result
ok 116 errors when remote result completed
# run - basic - bogus pipeline handling
ok 117 runner error on bogus pipeline
ok 118 pipeline errors propogated
ok 119 run completes even w/ error
# constructor - basic
ok 120 requires min attrs
ok 121 run must be extended
# saveResult - basic
ok 122 serialized pipeline state persists
ok 123 computation result stashed to `.data`
ok 124 db destroyed
# saveResult - basic - noop's on empty save
ok 125 noop:noData occurs when computation saves empty result
ok 126 db destroyed
# saveResult - basic - error
ok 127 errors without result doc to patch
ok 128 rejected on error
# getPreviousResult
ok 129 has no prev result
ok 130 has prev result
ok 131 has plugin state
# RemotePipelineRunner::constructor
ok 132 basic instantiation ok
# RemotePipelineRunner::run - basic
ok 133 serialized pipeline state persists
ok 134 user results state cached
ok 135 user state updated ok, composed of _id, _rev
ok 136 result states match
ok 137 pipeline _not_ re-run when results user results unchanged
# RemotePipelineRunner::run - basic - input errors
ok 138 errors without local result
# RemotePipelineRunner::run - basic - bogus pipeline handling
ok 139 error event emitted
ok 140 pipeline errors propogated
# propogate user errors via remote `userErrors` aggregation
ok 141 user errors propogated
ok 142 errors cleared when users are non-erroring
# local-runner-pool builds & execs runners in response to db events
ok 143 run started from new db document event
ok 144 run started from new db document event
ok 145 LocalPipelineRunner instantiated & returned local pipeline result
ok 146 pool teardown
# PipelineRunnerPool - handles new dbs
ok 147 abstract unextended handleCreatedDB throws
ok 148 created db handler called
ok 149 teardown ok
# queues processing for rapid succession database events
ok 150 exactly one job actively running, after runner.run called once
ok 151 exactly zero jobs actively running, after runner.run called twice
ok 152 teardown ok
# does not proceed queue whilst pipeline is `inProgress`
ok 153 three jobs queued
ok 154 two jobs queued
ok 155 one jobs queued
ok 156 zero jobs queued
ok 157 three jobs run
# Pool emits queue and run event activity
ok 158 ComputationResult instance required
ok 159 queue on starts
ok 160 result1 evented
ok 161 ComputationResult emitted
ok 162 result2 evented
ok 163 ComputationResult emitted
ok 164 queue on ends
ok 165 pool teardown ok
# abstract methods
ok 166 illegal createNewRunner call
# consortia has DBListeners on pool.init()
ok 167 listener ok
ok 168 pool teardown ok
# pool selectively listens to consortia when using `listenTo`
ok 169 listener created on limited listen set
ok 170 should listen to listenTo consortium
ok 171 should not listen to non-listenTo consortium
ok 172 pool teardown ok
# getPipelinePlugins
ok 173 group-step preRun loaded
ok 174 no group-step postRun loaded, but [] present
# builds & execs runners in response to db events
ok 175 queue executing on `staticRun`
ok 176 pipeline run started
ok 177 RemotePipelineRunner runs post-LocalComputationResult event staticRun
ok 178 pool tore-down ok
# builds new listeners when new a new consortium is added
ok 179 listener generated dynamically
ok 180 teardown ok
# fetch or seed computation results on init
ok 181 can fetch latest remote computation result
ok 182 can fetch latest remote computation result
ok 183 teardown ok
# marks completed computations
ok 184 sets end date
ok 185 sets "completed" to true
ok 186 teardown ok
# registry - construction
ok 187 requires opts
ok 188 requires env flags `isLocal`/`isRemote`
ok 189 requires remote db, always (p1)
ok 190 requires remote db, always (p2)
ok 191 registry always requires path
1..191
# tests 191
# pass 191
# ok
> coinstac-computation-registry@2.5.0 test /home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-computation-registry
> nyc --reporter=lcov node test/index.js
TAP version 13
# constructor
ok 1 throws with no registry
ok 2 works with proper args
ok 3 sets instance properties
# adds definition to store
ok 4 returns DecentralizedComputation instance
ok 5 instance name, url and version match
ok 6 saves DecentralizedComputation to internal store
# gets definition from disk
ok 7 rejects with non-existent computation
ok 8 rejects with malformed computation
ok 9 definition matches
# adds a computation
ok 10 rejects on non-registry name/version
ok 11 checks in-memory store with name and version
ok 12 doesn't check disk when computation is in memory
ok 13 doesn't add computation when it's in memory
ok 14 gets computation from disk
ok 15 adds computation to in-memory store
# gets all stored computations
ok 16 returns *some* computations
ok 17 returns all stored computations
# get fails on with no computation name
ok 18 rejects without args
# get fails on with no computation name
ok 19 rejects without version
# gets computation by name and version
ok 20 gets computation by name and version
ok 21 errored on bogus computation name
# gets name and version from directory name
ok 22 should be equivalent
ok 23 should be equivalent
ok 24 should be equivalent
ok 25 returns null for no matches
# every entry is valid
ok 26 (unnamed assert)
# all tags are semver
ok 27 (unnamed assert)
# setup
# configuration errors
ok 28 rejects without DB registry
ok 29 rejects with bad DB registry
# returns ComputationRegistry instance
ok 30 returns instance without args
ok 31 returns a non-local registry instance
ok 32 returns a local registry instance
ok 33 sets empty internal registry
# passes custom registry
ok 34 should be equal
# local computation registry fetches computations from source
ok 35 gets computations DB
ok 36 gets all documents from computations DB
ok 37 sets computations docs to internal registry
ok 38 proxies to ComputationRegistry#add
# local computation registry mutates whitelist
ok 39 keeps passed registry
ok 40 adds version to existing registry item
# local computation registry handles not-found computation
ok 41 rejects with not-found error
# remote computation registry retrieves all computations
ok 42 adds every decentralized computation to registry
# teardown
# helpers :: getPackage
ok 43 returns package.json contents
1..43
# tests 43
# pass 43
# ok
NpmUtilities.execInDir ("run test", [], "./packages/coinstac-decentralized-algorithm-integration")
Error: Command failed: npm run test
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8282]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8282]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8282]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8282]: db.type() is deprecated and will be removed in a future version of PouchDB
error: LOCAL testUser11 [8292]: caught per expectation
error: REMOTE [8282]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8282]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8282]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8282]: db.type() is deprecated and will be removed in a future version of PouchDB
error: LOCAL testUser12 [8298]: Command failed to run:
python ./handled-error.py --run {"computationId":"AF4F4944-0C44-35E2-9A1C-ACE69508FC65","consortiumId":"testconsortiumid1495523912493","remoteResult":{"pluginState":{"inputs":[[[{"name":"Is Control","type":"boolean"}]]]},"computationId":"AF4F4944-0C44-35E2-9A1C-ACE69508FC65","consortiumId":"testconsortiumid1495523912493","_id":"4183eaf664b71405dfdec965219ae1b4","complete":false,"computationInputs":[[[{"name":"Is Control","type":"boolean"}]]],"startDate":1495523915243,"usernames":[]},"username":"testUser12","userData":{"name":"testUser12's project","computationInputs":[[[{"name":"Is Control","type":"boolean"}]]],"consortiumId":"testconsortiumid1495523912493","files":[{"filename":"/home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-simulator/test/Test Data/M1/x/data.txt","tags":{"isControl":false}},{"filename":"/home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-simulator/test/Test Data/M1/y/data.txt","tags":{"isControl":true}},{"filename":"/home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-simulator/test/Test Data/M2/x/data.txt","tags":{"isControl":false}},{"filename":"/home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-simulator/test/Test Data/M2/y/data.txt","tags":{"isControl":true}}],"metaFile":[["filename","isControl"],["./M1/x/data.txt","0"],["./M1/y/data.txt","1"],["./M2/x/data.txt","0"],["./M2/y/data.txt","1"]],"metaFilePath":"/home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-simulator/test/Test Data/metadata.csv","metaCovariateMapping":{"1":0},"_id":"5BF09B1E-8883-F81B-ACC0-3DDB70C19479","_rev":"3-fbb43b9cb4403c0a796279888c56551b"}}
stdout:
{
"test": "result"
}
stderr:
caught per expectationpyenv: cannot rehash: /home/rof/.pyenv/shims/.pyenv-shim exists
error: LOCAL testUser12 [8298]: Error: Process exited with code 1:
caught per expectationpyenv: cannot rehash: /home/rof/.pyenv/shims/.pyenv-shim exists
at ChildProcess.cmd.on.error (/home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-common/src/models/computation/command-computation.js:75:25)
at emitTwo (events.js:106:13)
at ChildProcess.emit (events.js:191:7)
at Process.ChildProcess._handle.onexit (internal/child_process.js:215:12)
error: LOCAL testUser11 [8292]: caught per expectation
error: LOCAL testUser12 [8298]: Unhandled Rejection at: Promise Promise {
<rejected> { Error: Process exited with code 1:
caught per expectationpyenv: cannot rehash: /home/rof/.pyenv/shims/.pyenv-shim exists
at ChildProcess.cmd.on.error (/home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-common/src/models/computation/command-computation.js:75:25)
at emitTwo (events.js:106:13)
at ChildProcess.emit (events.js:191:7)
at Process.ChildProcess._handle.onexit (internal/child_process.js:215:12) isRunError: true } } reason:
Local process exited with code 1
Error: Local process exited with code 1
at ChildProcess.localProcess.on.code (/home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-simulator/src/boot-locals.js:45:15)
at emitTwo (events.js:106:13)
at ChildProcess.emit (events.js:191:7)
at Process.ChildProcess._handle.onexit (internal/child_process.js:215:12)
ERROR: Coverage for branches (87.1%) does not meet global threshold (90%)
npm ERR! Linux 4.2.0-42-generic
npm ERR! argv "/home/rof/.nvm/versions/node/v6.10.3/bin/node" "/home/rof/.nvm/versions/node/v6.10.3/bin/npm" "run" "test"
npm ERR! node v6.10.3
npm ERR! npm v3.10.10
npm ERR! code ELIFECYCLE
npm ERR! coinstac-distributed-algorithm-integration@2.5.0 test: `cross-env BLUEBIRD_WARNINGS=0 nyc --reporter=lcov --check-coverage --functions=90 --branches=90 node test/`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the coinstac-distributed-algorithm-integration@2.5.0 test script 'cross-env BLUEBIRD_WARNINGS=0 nyc --reporter=lcov --check-coverage --functions=90 --branches=90 node test/'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the coinstac-distributed-algorithm-integration package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR! cross-env BLUEBIRD_WARNINGS=0 nyc --reporter=lcov --check-coverage --functions=90 --branches=90 node test/
npm ERR! You can get information on how to open an issue for this project with:
npm ERR! npm bugs coinstac-distributed-algorithm-integration
npm ERR! Or if that isn't available, you can get their info via:
npm ERR! npm owner ls coinstac-distributed-algorithm-integration
npm ERR! There is likely additional logging output above.
npm ERR! Please include the following file with any support request:
npm ERR! /home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-decentralized-algorithm-integration/npm-debug.log
at ChildProcess.exithandler (child_process.js:204:12)
at emitTwo (events.js:106:13)
at ChildProcess.emit (events.js:191:7)
at maybeClose (internal/child_process.js:886:16)
at Process.ChildProcess._handle.onexit (internal/child_process.js:226:5)
NpmUtilities.runScriptInDir ("test", [], "./packages/coinstac-decentralized-algorithm-integration")
Error: Command failed: npm run test
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8282]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8282]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8282]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8282]: db.type() is deprecated and will be removed in a future version of PouchDB
error: LOCAL testUser11 [8292]: caught per expectation
error: REMOTE [8282]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8282]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8282]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8282]: db.type() is deprecated and will be removed in a future version of PouchDB
error: LOCAL testUser12 [8298]: Command failed to run:
python ./handled-error.py --run {"computationId":"AF4F4944-0C44-35E2-9A1C-ACE69508FC65","consortiumId":"testconsortiumid1495523912493","remoteResult":{"pluginState":{"inputs":[[[{"name":"Is Control","type":"boolean"}]]]},"computationId":"AF4F4944-0C44-35E2-9A1C-ACE69508FC65","consortiumId":"testconsortiumid1495523912493","_id":"4183eaf664b71405dfdec965219ae1b4","complete":false,"computationInputs":[[[{"name":"Is Control","type":"boolean"}]]],"startDate":1495523915243,"usernames":[]},"username":"testUser12","userData":{"name":"testUser12's project","computationInputs":[[[{"name":"Is Control","type":"boolean"}]]],"consortiumId":"testconsortiumid1495523912493","files":[{"filename":"/home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-simulator/test/Test Data/M1/x/data.txt","tags":{"isControl":false}},{"filename":"/home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-simulator/test/Test Data/M1/y/data.txt","tags":{"isControl":true}},{"filename":"/home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-simulator/test/Test Data/M2/x/data.txt","tags":{"isControl":false}},{"filename":"/home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-simulator/test/Test Data/M2/y/data.txt","tags":{"isControl":true}}],"metaFile":[["filename","isControl"],["./M1/x/data.txt","0"],["./M1/y/data.txt","1"],["./M2/x/data.txt","0"],["./M2/y/data.txt","1"]],"metaFilePath":"/home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-simulator/test/Test Data/metadata.csv","metaCovariateMapping":{"1":0},"_id":"5BF09B1E-8883-F81B-ACC0-3DDB70C19479","_rev":"3-fbb43b9cb4403c0a796279888c56551b"}}
stdout:
{
"test": "result"
}
stderr:
caught per expectationpyenv: cannot rehash: /home/rof/.pyenv/shims/.pyenv-shim exists
error: LOCAL testUser12 [8298]: Error: Process exited with code 1:
caught per expectationpyenv: cannot rehash: /home/rof/.pyenv/shims/.pyenv-shim exists
at ChildProcess.cmd.on.error (/home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-common/src/models/computation/command-computation.js:75:25)
at emitTwo (events.js:106:13)
at ChildProcess.emit (events.js:191:7)
at Process.ChildProcess._handle.onexit (internal/child_process.js:215:12)
error: LOCAL testUser11 [8292]: caught per expectation
error: LOCAL testUser12 [8298]: Unhandled Rejection at: Promise Promise {
<rejected> { Error: Process exited with code 1:
caught per expectationpyenv: cannot rehash: /home/rof/.pyenv/shims/.pyenv-shim exists
at ChildProcess.cmd.on.error (/home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-common/src/models/computation/command-computation.js:75:25)
at emitTwo (events.js:106:13)
at ChildProcess.emit (events.js:191:7)
at Process.ChildProcess._handle.onexit (internal/child_process.js:215:12) isRunError: true } } reason:
Local process exited with code 1
Error: Local process exited with code 1
at ChildProcess.localProcess.on.code (/home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-simulator/src/boot-locals.js:45:15)
at emitTwo (events.js:106:13)
at ChildProcess.emit (events.js:191:7)
at Process.ChildProcess._handle.onexit (internal/child_process.js:215:12)
ERROR: Coverage for branches (87.1%) does not meet global threshold (90%)
npm ERR! Linux 4.2.0-42-generic
npm ERR! argv "/home/rof/.nvm/versions/node/v6.10.3/bin/node" "/home/rof/.nvm/versions/node/v6.10.3/bin/npm" "run" "test"
npm ERR! node v6.10.3
npm ERR! npm v3.10.10
npm ERR! code ELIFECYCLE
npm ERR! coinstac-distributed-algorithm-integration@2.5.0 test: `cross-env BLUEBIRD_WARNINGS=0 nyc --reporter=lcov --check-coverage --functions=90 --branches=90 node test/`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the coinstac-distributed-algorithm-integration@2.5.0 test script 'cross-env BLUEBIRD_WARNINGS=0 nyc --reporter=lcov --check-coverage --functions=90 --branches=90 node test/'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the coinstac-distributed-algorithm-integration package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR! cross-env BLUEBIRD_WARNINGS=0 nyc --reporter=lcov --check-coverage --functions=90 --branches=90 node test/
npm ERR! You can get information on how to open an issue for this project with:
npm ERR! npm bugs coinstac-distributed-algorithm-integration
npm ERR! Or if that isn't available, you can get their info via:
npm ERR! npm owner ls coinstac-distributed-algorithm-integration
npm ERR! There is likely additional logging output above.
npm ERR! Please include the following file with any support request:
npm ERR! /home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-decentralized-algorithm-integration/npm-debug.log
at ChildProcess.exithandler (child_process.js:204:12)
at emitTwo (events.js:106:13)
at ChildProcess.emit (events.js:191:7)
at maybeClose (internal/child_process.js:886:16)
at Process.ChildProcess._handle.onexit (internal/child_process.js:226:5)
> coinstac-distributed-algorithm-integration@2.5.0 test /home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-decentralized-algorithm-integration
> cross-env BLUEBIRD_WARNINGS=0 nyc --reporter=lcov --check-coverage --functions=90 --branches=90 node test/
---
SIMULATION PLAN: 4 simulations
---
SIMULATION (1/4): group-add.js
info: pouchdb-server running on http://localhost:5987
info: REMOTE [8117]: Booting
info: REMOTE [8117]: Starting server...
info: REMOTE [8117]: Initializing DB registry...
info: REMOTE [8117]: DB registry initialized
info: REMOTE [8117]: initializing RemotePipelineRunnerPool...
info: REMOTE [8117]: RemotePipelineRunnerPool.events [ready]
info: REMOTE [8117]: RemotePipelineRunnerPool ready
info: REMOTE [8117]: Server ready
info: Remote process booted
info: REMOTE [8117]: RemotePipelineRunnerPool.events [listener:created] DB name: local-consortium-testconsortiumid1495523889107
info: LOCAL testUser2 [8133]: initializing coinstac-client
info: LOCAL testUser4 [8145]: initializing coinstac-client
info: LOCAL testUser1 [8127]: initializing coinstac-client
info: LOCAL testUser3 [8139]: initializing coinstac-client
info: LOCAL testUser2 [8133]: construct LocalPipelineRunnerPool
info: LOCAL testUser4 [8145]: construct LocalPipelineRunnerPool
info: LOCAL testUser3 [8139]: construct LocalPipelineRunnerPool
info: LOCAL testUser1 [8127]: construct LocalPipelineRunnerPool
info: LOCAL testUser2 [8133]: user belongs to consortia: testconsortiumid1495523889107
info: LOCAL testUser2 [8133]: initializing LocalPipelineRunnerPool
info: LOCAL testUser4 [8145]: user belongs to consortia: testconsortiumid1495523889107
info: LOCAL testUser4 [8145]: initializing LocalPipelineRunnerPool
info: LOCAL testUser3 [8139]: user belongs to consortia: testconsortiumid1495523889107
info: LOCAL testUser3 [8139]: initializing LocalPipelineRunnerPool
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [listener:created] DB name: %s remote-consortium-testconsortiumid1495523889107
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [ready]
info: LOCAL testUser1 [8127]: user belongs to consortia: testconsortiumid1495523889107
info: LOCAL testUser1 [8127]: initializing LocalPipelineRunnerPool
info: LOCAL testUser2 [8133]: Database consortia .all() attempts: 1
info: LOCAL testUser2 [8133]: Saving project
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [listener:created] DB name: %s remote-consortium-testconsortiumid1495523889107
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [ready]
info: LOCAL testUser4 [8145]: Database consortia .all() attempts: 1
info: LOCAL testUser4 [8145]: Saving project
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [listener:created] DB name: %s remote-consortium-testconsortiumid1495523889107
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [ready]
info: LOCAL testUser3 [8139]: Database consortia .all() attempts: 1
info: LOCAL testUser3 [8139]: Saving project
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [listener:created] DB name: %s remote-consortium-testconsortiumid1495523889107
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [ready]
info: LOCAL testUser1 [8127]: Database consortia .all() attempts: 1
info: LOCAL testUser1 [8127]: Saving project
info: Local processes booted
info: LOCAL testUser1 [8127]: testUser1 kicking off
info: LOCAL testUser2 [8133]: testUser2 kicking off
info: LOCAL testUser4 [8145]: testUser4 kicking off
info: LOCAL testUser3 [8139]: testUser3 kicking off
info: LOCAL testUser2 [8133]: Database consortia .all() attempts: 1
info: LOCAL testUser2 [8133]: Database projects .all() attempts: 1
info: LOCAL testUser4 [8145]: Database consortia .all() attempts: 1
info: LOCAL testUser3 [8139]: Database consortia .all() attempts: 1
info: LOCAL testUser4 [8145]: Database projects .all() attempts: 1
info: LOCAL testUser3 [8139]: Database projects .all() attempts: 1
info: LOCAL testUser1 [8127]: Database consortia .all() attempts: 1
Database projects .all() attempts: 1
info: LOCAL testUser1 [8127]: testUser1 initiating
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser1 [8127]: ...bumping 1
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: REMOTE [8117]: RemotePipelineRunnerPool.events [queue:start] Run id: 383071f2cbe4a675f3ed3f7f2b6a1877
info: REMOTE [8117]: RemotePipelineRunnerPool.events [run:start] Result:
info: REMOTE [8117]: [ { un: 'testUser1', data: 1 } ]
info: REMOTE [8117]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8117]: RemotePipelineRunnerPool.events [queue:end] Run id: 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser2 [8133]: testUser2 triggering runner
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser2 [8133]: ...bumping 1
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser4 [8145]: testUser4 triggering runner
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser3 [8139]: testUser3 triggering runner
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser4 [8145]: ...bumping 1
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser3 [8139]: ...bumping 1
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: REMOTE [8117]: RemotePipelineRunnerPool.events [queue:start] Run id: 383071f2cbe4a675f3ed3f7f2b6a1877
info: REMOTE [8117]: RemotePipelineRunnerPool.events [run:start] Result:
info: REMOTE [8117]: [ { un: 'testUser1', data: 1 }, { un: 'testUser2', data: 1 } ]
info: REMOTE [8117]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8117]: RemotePipelineRunnerPool.events [queue:end] Run id: 383071f2cbe4a675f3ed3f7f2b6a1877
info: REMOTE [8117]: RemotePipelineRunnerPool.events [queue:start] Run id: 383071f2cbe4a675f3ed3f7f2b6a1877
info: REMOTE [8117]: RemotePipelineRunnerPool.events [run:start] Result:
info: REMOTE [8117]: [ { un: 'testUser1', data: 1 },
{ un: 'testUser2', data: 1 },
{ un: 'testUser4', data: 1 } ]
info: REMOTE [8117]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8117]: RemotePipelineRunnerPool.events [queue:end] Run id: 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: REMOTE [8117]: RemotePipelineRunnerPool.events [queue:start] Run id: 383071f2cbe4a675f3ed3f7f2b6a1877
info: REMOTE [8117]: RemotePipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: REMOTE [8117]: [ { un: 'testUser1', data: 1 },
{ un: 'testUser2', data: 1 },
{ un: 'testUser3', data: 1 },
{ un: 'testUser4', data: 1 } ]
info: REMOTE [8117]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8117]: RemotePipelineRunnerPool.events [queue:end] Run id: 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser2 [8133]: ...bumping 2
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser4 [8145]: ...bumping 2
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser1 [8127]: ...bumping 2
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser3 [8139]: ...bumping 2
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: REMOTE [8117]: RemotePipelineRunnerPool.events [queue:start] Run id: 383071f2cbe4a675f3ed3f7f2b6a1877
info: REMOTE [8117]: RemotePipelineRunnerPool.events [run:start] Result:
info: REMOTE [8117]: [ { un: 'testUser1', data: 1 },
{ un: 'testUser2', data: 2 },
{ un: 'testUser3', data: 1 },
{ un: 'testUser4', data: 1 } ]
info: REMOTE [8117]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8117]: RemotePipelineRunnerPool.events [queue:end] Run id: 383071f2cbe4a675f3ed3f7f2b6a1877
info: REMOTE [8117]: RemotePipelineRunnerPool.events [queue:start] Run id: 383071f2cbe4a675f3ed3f7f2b6a1877
info: REMOTE [8117]: RemotePipelineRunnerPool.events [run:start] Result:
info: REMOTE [8117]: [ { un: 'testUser1', data: 1 },
{ un: 'testUser2', data: 2 },
{ un: 'testUser3', data: 1 },
{ un: 'testUser4', data: 2 } ]
info: REMOTE [8117]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8117]: RemotePipelineRunnerPool.events [queue:end] Run id: 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: REMOTE [8117]: RemotePipelineRunnerPool.events [queue:start] Run id: 383071f2cbe4a675f3ed3f7f2b6a1877
info: REMOTE [8117]: RemotePipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: REMOTE [8117]: [ { un: 'testUser1', data: 2 },
{ un: 'testUser2', data: 2 },
{ un: 'testUser3', data: 2 },
{ un: 'testUser4', data: 2 } ]
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: REMOTE [8117]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8117]: RemotePipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: REMOTE [8117]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8117]: RemotePipelineRunnerPool.events [queue:end] Run id: 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser2 [8133]: ...bumping 3
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser4 [8145]: ...bumping 3
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser1 [8127]: ...bumping 3
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser3 [8139]: ...bumping 3
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: REMOTE [8117]: RemotePipelineRunnerPool.events [queue:start] Run id: 383071f2cbe4a675f3ed3f7f2b6a1877
info: REMOTE [8117]: RemotePipelineRunnerPool.events [run:start] Result:
info: REMOTE [8117]: [ { un: 'testUser1', data: 2 },
{ un: 'testUser2', data: 3 },
{ un: 'testUser3', data: 2 },
{ un: 'testUser4', data: 2 } ]
info: REMOTE [8117]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8117]: RemotePipelineRunnerPool.events [queue:end] Run id: 383071f2cbe4a675f3ed3f7f2b6a1877
info: REMOTE [8117]: RemotePipelineRunnerPool.events [queue:start] Run id: 383071f2cbe4a675f3ed3f7f2b6a1877
info: REMOTE [8117]: RemotePipelineRunnerPool.events [run:start] Result:
info: REMOTE [8117]: [ { un: 'testUser1', data: 2 },
{ un: 'testUser2', data: 3 },
{ un: 'testUser3', data: 2 },
{ un: 'testUser4', data: 3 } ]
info: REMOTE [8117]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8117]: RemotePipelineRunnerPool.events [queue:end] Run id: 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: REMOTE [8117]: RemotePipelineRunnerPool.events [queue:start] Run id: 383071f2cbe4a675f3ed3f7f2b6a1877
info: REMOTE [8117]: RemotePipelineRunnerPool.events [run:start] Result:
info: REMOTE [8117]: [ { un: 'testUser1', data: 3 },
{ un: 'testUser2', data: 3 },
{ un: 'testUser3', data: 3 },
{ un: 'testUser4', data: 3 } ]
info: REMOTE [8117]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8117]: RemotePipelineRunnerPool.events [computation:complete] Run id: 383071f2cbe4a675f3ed3f7f2b6a1877
info: REMOTE [8117]: RemotePipelineRunnerPool.events [computation:complete] Run id: 383071f2cbe4a675f3ed3f7f2b6a1877
info: REMOTE [8117]: RemotePipelineRunnerPool.events [run:start] Result:
info: REMOTE [8117]: RemotePipelineRunnerPool.events [computation:markedComplete] Run id: 383071f2cbe4a675f3ed3f7f2b6a1877
info: REMOTE [8117]: Shutting down server...
info: REMOTE [8117]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8117]: RemotePipelineRunnerPool.events [computation:complete] Run id: 383071f2cbe4a675f3ed3f7f2b6a1877
info: REMOTE [8117]: RemotePipelineRunnerPool.events [computation:complete] Run id: 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: REMOTE [8117]: RemotePipelineRunnerPool.events [queue:end] Run id: 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [run:start] Result:
info: REMOTE [8117]: RemotePipelineRunnerPool.events [computation:markedComplete] Run id: 383071f2cbe4a675f3ed3f7f2b6a1877
info: REMOTE [8117]: Shutting down server...
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser4 [8145]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser2 [8133]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser1 [8127]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: LOCAL testUser3 [8139]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s 383071f2cbe4a675f3ed3f7f2b6a1877
info: REMOTE [8117]: Stopping server...
info: REMOTE [8117]: destroying DBRegistry...
info: REMOTE [8117]: destroying RemotePipelineRunnerPool...
SIMULATION (2/4): plugin-group-step.js
info: pouchdb-server running on http://localhost:5987
info: REMOTE [8177]: Booting
info: REMOTE [8177]: Starting server...
info: REMOTE [8177]: Initializing DB registry...
info: REMOTE [8177]: DB registry initialized
info: REMOTE [8177]: initializing RemotePipelineRunnerPool...
info: REMOTE [8177]: RemotePipelineRunnerPool.events [ready]
info: REMOTE [8177]: RemotePipelineRunnerPool ready
info: REMOTE [8177]: Server ready
info: Remote process booted
info: REMOTE [8177]: RemotePipelineRunnerPool.events [listener:created] DB name: local-consortium-testconsortiumid1495523897262
info: LOCAL testUser8 [8206]: initializing coinstac-client
info: LOCAL testUser6 [8196]: initializing coinstac-client
info: LOCAL testUser5 [8190]: initializing coinstac-client
info: LOCAL testUser7 [8202]: initializing coinstac-client
info: LOCAL testUser8 [8206]: construct LocalPipelineRunnerPool
info: LOCAL testUser6 [8196]: construct LocalPipelineRunnerPool
info: LOCAL testUser5 [8190]: construct LocalPipelineRunnerPool
info: LOCAL testUser7 [8202]: construct LocalPipelineRunnerPool
info: LOCAL testUser6 [8196]: user belongs to consortia: testconsortiumid1495523897262
info: LOCAL testUser6 [8196]: initializing LocalPipelineRunnerPool
info: LOCAL testUser8 [8206]: user belongs to consortia: testconsortiumid1495523897262
info: LOCAL testUser8 [8206]: initializing LocalPipelineRunnerPool
info: LOCAL testUser5 [8190]: user belongs to consortia: testconsortiumid1495523897262
info: LOCAL testUser5 [8190]: initializing LocalPipelineRunnerPool
info: LOCAL testUser7 [8202]: user belongs to consortia: testconsortiumid1495523897262
info: LOCAL testUser7 [8202]: initializing LocalPipelineRunnerPool
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [listener:created] DB name: %s remote-consortium-testconsortiumid1495523897262
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [ready]
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [listener:created] DB name: %s remote-consortium-testconsortiumid1495523897262
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [ready]
info: LOCAL testUser6 [8196]: Database consortia .all() attempts: 1
info: LOCAL testUser6 [8196]: Saving project
info: LOCAL testUser8 [8206]: Database consortia .all() attempts: 1
info: LOCAL testUser8 [8206]: Saving project
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [listener:created] DB name: %s remote-consortium-testconsortiumid1495523897262
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [ready]
info: LOCAL testUser5 [8190]: Database consortia .all() attempts: 1
info: LOCAL testUser5 [8190]: Saving project
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [listener:created] DB name: %s remote-consortium-testconsortiumid1495523897262
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [ready]
info: LOCAL testUser7 [8202]: Database consortia .all() attempts: 1
info: LOCAL testUser7 [8202]: Saving project
info: Local processes booted
info: LOCAL testUser6 [8196]: testUser6 kicking off
info: LOCAL testUser8 [8206]: testUser8 kicking off
info: LOCAL testUser5 [8190]: testUser5 kicking off
info: LOCAL testUser7 [8202]: testUser7 kicking off
info: LOCAL testUser6 [8196]: Database consortia .all() attempts: 1
info: LOCAL testUser6 [8196]: Database projects .all() attempts: 1
info: LOCAL testUser5 [8190]: Database consortia .all() attempts: 1
info: LOCAL testUser5 [8190]: Database projects .all() attempts: 1
info: LOCAL testUser5 [8190]: testUser5 initiating
info: LOCAL testUser8 [8206]: Database consortia .all() attempts: 1
info: LOCAL testUser7 [8202]: Database consortia .all() attempts: 1
info: LOCAL testUser8 [8206]: Database projects .all() attempts: 1
info: LOCAL testUser7 [8202]: Database projects .all() attempts: 1
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser5 [8190]: 26
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: RemotePipelineRunnerPool.events [queue:start] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:start] Result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [queue:end] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser7 [8202]: testUser7 triggering runner
info: LOCAL testUser8 [8206]: testUser8 triggering runner
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser6 [8196]: testUser6 triggering runner
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser7 [8202]: 26
info: LOCAL testUser8 [8206]: 26
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser6 [8196]: 26
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: RemotePipelineRunnerPool.events [queue:start] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:start] Result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [queue:end] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: RemotePipelineRunnerPool.events [queue:start] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:start] Result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [queue:end] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [run:start] Result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [queue:start] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:start] Result:
info: REMOTE [8177]: 1
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [queue:end] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser5 [8190]: 27
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser8 [8206]: 27
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser7 [8202]: 27
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser6 [8196]: 27
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: RemotePipelineRunnerPool.events [queue:start] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:start] Result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [queue:end] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: RemotePipelineRunnerPool.events [queue:start] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [queue:end] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [queue:start] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: 2
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:start] Result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [queue:end] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser6 [8196]: 28
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser7 [8202]: 28
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser8 [8206]: 28
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser5 [8190]: 28
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: RemotePipelineRunnerPool.events [queue:start] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:start] Result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [queue:end] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: RemotePipelineRunnerPool.events [queue:start] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:start] Result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [queue:end] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [run:end] Computation result:
LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: RemotePipelineRunnerPool.events [queue:start] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:start] Result:
info: REMOTE [8177]: 3
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:start] Result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [queue:end] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: 29
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser6 [8196]: 29
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser8 [8206]: 29
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser7 [8202]: 29
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: RemotePipelineRunnerPool.events [queue:start] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:start] Result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [queue:end] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: RemotePipelineRunnerPool.events [queue:start] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:start] Result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [queue:end] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [run:start] Result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [queue:start] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: 4
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:start] Result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [queue:end] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: 30
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser6 [8196]: 30
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser8 [8206]: 30
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser7 [8202]: 30
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [run:end] Computation result:
LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: RemotePipelineRunnerPool.events [queue:start] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:start] Result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [queue:end] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: RemotePipelineRunnerPool.events [queue:start] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:start] Result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [queue:end] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: RemotePipelineRunnerPool.events [queue:start] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:start] Result:
info: REMOTE [8177]: 5
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [computation:complete] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: RemotePipelineRunnerPool.events [computation:complete] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:start] Result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [computation:markedComplete] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: Shutting down server...
info: REMOTE [8177]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8177]: RemotePipelineRunnerPool.events [computation:complete] Run id: 7689517dc42ffab6ec4ade0ce67f271d
RemotePipelineRunnerPool.events [computation:complete] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: RemotePipelineRunnerPool.events [queue:end] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: RemotePipelineRunnerPool.events [computation:markedComplete] Run id: 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: Shutting down server...
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser5 [8190]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser8 [8206]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser6 [8196]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: LOCAL testUser7 [8202]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s 7689517dc42ffab6ec4ade0ce67f271d
info: REMOTE [8177]: Stopping server...
info: REMOTE [8177]: destroying DBRegistry...
info: REMOTE [8177]: destroying RemotePipelineRunnerPool...
SIMULATION (3/4): plugin-group-step-seeder.js
info: pouchdb-server running on http://localhost:5987
info: REMOTE [8240]: Booting
info: REMOTE [8240]: Starting server...
info: REMOTE [8240]: Initializing DB registry...
info: REMOTE [8240]: DB registry initialized
info: REMOTE [8240]: initializing RemotePipelineRunnerPool...
info: REMOTE [8240]: RemotePipelineRunnerPool.events [ready]
info: REMOTE [8240]: RemotePipelineRunnerPool ready
info: REMOTE [8240]: Server ready
info: Remote process booted
info: REMOTE [8240]: RemotePipelineRunnerPool.events [listener:created] DB name: local-consortium-testconsortiumid1495523905515
info: LOCAL testUser9 [8250]: initializing coinstac-client
info: LOCAL testUser10 [8256]: initializing coinstac-client
info: LOCAL testUser9 [8250]: construct LocalPipelineRunnerPool
info: LOCAL testUser10 [8256]: construct LocalPipelineRunnerPool
info: LOCAL testUser9 [8250]: user belongs to consortia: testconsortiumid1495523905515
info: LOCAL testUser9 [8250]: initializing LocalPipelineRunnerPool
info: LOCAL testUser10 [8256]: user belongs to consortia: testconsortiumid1495523905515
info: LOCAL testUser10 [8256]: initializing LocalPipelineRunnerPool
info: LOCAL testUser9 [8250]: LocalPipelineRunnerPool.events [listener:created] DB name: %s remote-consortium-testconsortiumid1495523905515
info: LOCAL testUser9 [8250]: LocalPipelineRunnerPool.events [ready]
info: LOCAL testUser9 [8250]: Database consortia .all() attempts: 1
info: LOCAL testUser9 [8250]: Saving project
info: LOCAL testUser10 [8256]: LocalPipelineRunnerPool.events [listener:created] DB name: %s remote-consortium-testconsortiumid1495523905515
info: LOCAL testUser10 [8256]: LocalPipelineRunnerPool.events [ready]
info: LOCAL testUser10 [8256]: Database consortia .all() attempts: 1
info: LOCAL testUser10 [8256]: Saving project
info: Local processes booted
info: LOCAL testUser9 [8250]: testUser9 kicking off
info: LOCAL testUser10 [8256]: testUser10 kicking off
info: LOCAL testUser9 [8250]: Database consortia .all() attempts: 1
info: LOCAL testUser9 [8250]: Database projects .all() attempts: 1
info: LOCAL testUser9 [8250]: testUser9 initiating
info: LOCAL testUser10 [8256]: Database consortia .all() attempts: 1
info: LOCAL testUser10 [8256]: Database projects .all() attempts: 1
info: LOCAL testUser9 [8250]: LocalPipelineRunnerPool.events [queue:start] Run id: %s cde2b8da812759f1655bea3c7a6cb777
info: LOCAL testUser9 [8250]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser9 [8250]: testUser9 preprocessing done
info: LOCAL testUser9 [8250]: LocalPipelineRunnerPool.events [pipeline:inProgress]
info: LOCAL testUser9 [8250]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser9 [8250]: LocalPipelineRunnerPool.events [queue:end] Run id: %s cde2b8da812759f1655bea3c7a6cb777
info: REMOTE [8240]: RemotePipelineRunnerPool.events [queue:start] Run id: cde2b8da812759f1655bea3c7a6cb777
info: REMOTE [8240]: RemotePipelineRunnerPool.events [run:start] Result:
info: REMOTE [8240]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8240]: RemotePipelineRunnerPool.events [queue:end] Run id: cde2b8da812759f1655bea3c7a6cb777
info: LOCAL testUser9 [8250]: LocalPipelineRunnerPool.events [queue:start] Run id: %s cde2b8da812759f1655bea3c7a6cb777
info: LOCAL testUser9 [8250]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser10 [8256]: LocalPipelineRunnerPool.events [queue:start] Run id: %s cde2b8da812759f1655bea3c7a6cb777
info: LOCAL testUser9 [8250]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser9 [8250]: LocalPipelineRunnerPool.events [queue:end] Run id: %s cde2b8da812759f1655bea3c7a6cb777
info: LOCAL testUser10 [8256]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser10 [8256]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser10 [8256]: LocalPipelineRunnerPool.events [queue:end] Run id: %s cde2b8da812759f1655bea3c7a6cb777
info: LOCAL testUser10 [8256]: testUser10 triggering runner
info: LOCAL testUser10 [8256]: LocalPipelineRunnerPool.events [queue:start] Run id: %s cde2b8da812759f1655bea3c7a6cb777
info: LOCAL testUser10 [8256]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser10 [8256]: testUser10 preprocessing done
info: LOCAL testUser10 [8256]: LocalPipelineRunnerPool.events [pipeline:inProgress]
info: LOCAL testUser10 [8256]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser10 [8256]: LocalPipelineRunnerPool.events [queue:end] Run id: %s cde2b8da812759f1655bea3c7a6cb777
info: REMOTE [8240]: RemotePipelineRunnerPool.events [queue:start] Run id: cde2b8da812759f1655bea3c7a6cb777
info: REMOTE [8240]: RemotePipelineRunnerPool.events [run:start] Result:
info: REMOTE [8240]: I've computed everyone's average: 2. By using the group-step plugin, I can make sure that everyone get's some base data from me before they go about doing some computation/analysis.
info: REMOTE [8240]: RemotePipelineRunnerPool.events [pipeline:inProgress]
info: REMOTE [8240]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8240]: RemotePipelineRunnerPool.events [queue:end] Run id: cde2b8da812759f1655bea3c7a6cb777
info: LOCAL testUser10 [8256]: LocalPipelineRunnerPool.events [queue:start] Run id: %s cde2b8da812759f1655bea3c7a6cb777
info: LOCAL testUser9 [8250]: LocalPipelineRunnerPool.events [queue:start] Run id: %s cde2b8da812759f1655bea3c7a6cb777
info: LOCAL testUser10 [8256]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser9 [8250]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser9 [8250]: yea, i saw that everyone's average is 2
info: LOCAL testUser10 [8256]: yea, i saw that everyone's average is 2
info: LOCAL testUser10 [8256]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser10 [8256]: LocalPipelineRunnerPool.events [queue:end] Run id: %s cde2b8da812759f1655bea3c7a6cb777
info: LOCAL testUser9 [8250]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser9 [8250]: LocalPipelineRunnerPool.events [queue:end] Run id: %s cde2b8da812759f1655bea3c7a6cb777
info: LOCAL testUser10 [8256]: LocalPipelineRunnerPool.events [queue:start] Run id: %s cde2b8da812759f1655bea3c7a6cb777
info: LOCAL testUser10 [8256]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser10 [8256]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser10 [8256]: LocalPipelineRunnerPool.events [queue:end] Run id: %s cde2b8da812759f1655bea3c7a6cb777
info: REMOTE [8240]: RemotePipelineRunnerPool.events [queue:start] Run id: cde2b8da812759f1655bea3c7a6cb777
info: REMOTE [8240]: RemotePipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser9 [8250]: LocalPipelineRunnerPool.events [queue:start] Run id: %s cde2b8da812759f1655bea3c7a6cb777
info: LOCAL testUser9 [8250]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser9 [8250]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser9 [8250]: LocalPipelineRunnerPool.events [queue:end] Run id: %s cde2b8da812759f1655bea3c7a6cb777
info: REMOTE [8240]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8240]: RemotePipelineRunnerPool.events [queue:end] Run id: cde2b8da812759f1655bea3c7a6cb777
info: REMOTE [8240]: RemotePipelineRunnerPool.events [queue:start] Run id: cde2b8da812759f1655bea3c7a6cb777
info: REMOTE [8240]: RemotePipelineRunnerPool.events [run:start] Result:
info: REMOTE [8240]: boom baby.
info: REMOTE [8240]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8240]: RemotePipelineRunnerPool.events [computation:complete] Run id: cde2b8da812759f1655bea3c7a6cb777
info: REMOTE [8240]: RemotePipelineRunnerPool.events [computation:complete] Run id: cde2b8da812759f1655bea3c7a6cb777
info: REMOTE [8240]: RemotePipelineRunnerPool.events [queue:end] Run id: cde2b8da812759f1655bea3c7a6cb777
info: REMOTE [8240]: RemotePipelineRunnerPool.events [computation:markedComplete] Run id: cde2b8da812759f1655bea3c7a6cb777
info: REMOTE [8240]: Shutting down server...
info: LOCAL testUser9 [8250]: LocalPipelineRunnerPool.events [queue:start] Run id: %s cde2b8da812759f1655bea3c7a6cb777
info: LOCAL testUser9 [8250]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser10 [8256]: LocalPipelineRunnerPool.events [queue:start] Run id: %s cde2b8da812759f1655bea3c7a6cb777
info: LOCAL testUser10 [8256]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser10 [8256]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser10 [8256]: LocalPipelineRunnerPool.events [queue:end] Run id: %s cde2b8da812759f1655bea3c7a6cb777
info: LOCAL testUser9 [8250]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser9 [8250]: LocalPipelineRunnerPool.events [queue:end] Run id: %s cde2b8da812759f1655bea3c7a6cb777
info: LOCAL testUser10 [8256]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s cde2b8da812759f1655bea3c7a6cb777
info: LOCAL testUser10 [8256]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s cde2b8da812759f1655bea3c7a6cb777
info: LOCAL testUser9 [8250]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s cde2b8da812759f1655bea3c7a6cb777
info: LOCAL testUser9 [8250]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s cde2b8da812759f1655bea3c7a6cb777
info: LOCAL testUser10 [8256]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s cde2b8da812759f1655bea3c7a6cb777
info: LOCAL testUser10 [8256]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s cde2b8da812759f1655bea3c7a6cb777
info: LOCAL testUser9 [8250]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s cde2b8da812759f1655bea3c7a6cb777
info: LOCAL testUser9 [8250]: LocalPipelineRunnerPool.events [computation:complete] Run id: %s cde2b8da812759f1655bea3c7a6cb777
info: REMOTE [8240]: Stopping server...
info: REMOTE [8240]: destroying DBRegistry...
info: REMOTE [8240]: destroying RemotePipelineRunnerPool...
SIMULATION (4/4): computation-error-handled.js
info: pouchdb-server running on http://localhost:5987
info: REMOTE [8282]: Booting
info: REMOTE [8282]: Starting server...
info: REMOTE [8282]: Initializing DB registry...
info: REMOTE [8282]: DB registry initialized
info: REMOTE [8282]: initializing RemotePipelineRunnerPool...
info: REMOTE [8282]: RemotePipelineRunnerPool.events [ready]
info: REMOTE [8282]: RemotePipelineRunnerPool ready
info: REMOTE [8282]: Server ready
info: Remote process booted
info: REMOTE [8282]: RemotePipelineRunnerPool.events [listener:created] DB name: local-consortium-testconsortiumid1495523912493
info: LOCAL testUser11 [8292]: initializing coinstac-client
info: LOCAL testUser12 [8298]: initializing coinstac-client
info: LOCAL testUser11 [8292]: construct LocalPipelineRunnerPool
info: LOCAL testUser12 [8298]: construct LocalPipelineRunnerPool
info: LOCAL testUser11 [8292]: user belongs to consortia: testconsortiumid1495523912493
info: LOCAL testUser11 [8292]: initializing LocalPipelineRunnerPool
info: LOCAL testUser12 [8298]: user belongs to consortia: testconsortiumid1495523912493
info: LOCAL testUser12 [8298]: initializing LocalPipelineRunnerPool
info: LOCAL testUser11 [8292]: LocalPipelineRunnerPool.events [listener:created] DB name: %s remote-consortium-testconsortiumid1495523912493
info: LOCAL testUser11 [8292]: LocalPipelineRunnerPool.events [ready]
info: LOCAL testUser11 [8292]: Database consortia .all() attempts: 1
info: LOCAL testUser11 [8292]: Saving project
info: LOCAL testUser12 [8298]: LocalPipelineRunnerPool.events [listener:created] DB name: %s remote-consortium-testconsortiumid1495523912493
info: LOCAL testUser12 [8298]: LocalPipelineRunnerPool.events [ready]
info: LOCAL testUser12 [8298]: Database consortia .all() attempts: 1
info: LOCAL testUser12 [8298]: Saving project
info: Local processes booted
info: LOCAL testUser12 [8298]: testUser12 kicking off
info: LOCAL testUser11 [8292]: testUser11 kicking off
info: LOCAL testUser11 [8292]: Database consortia .all() attempts: 1
info: LOCAL testUser12 [8298]: Database consortia .all() attempts: 1
info: LOCAL testUser11 [8292]: Database projects .all() attempts: 1
info: LOCAL testUser12 [8298]: Database projects .all() attempts: 1
info: LOCAL testUser11 [8292]: testUser11 initiating
info: LOCAL testUser11 [8292]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 4183eaf664b71405dfdec965219ae1b4
info: LOCAL testUser11 [8292]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser11 [8292]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser11 [8292]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 4183eaf664b71405dfdec965219ae1b4
info: REMOTE [8282]: RemotePipelineRunnerPool.events [queue:start] Run id: 4183eaf664b71405dfdec965219ae1b4
info: REMOTE [8282]: RemotePipelineRunnerPool.events [run:start] Result:
info: REMOTE [8282]: RemotePipelineRunnerPool.events [run:end] Computation result:
info: REMOTE [8282]: RemotePipelineRunnerPool.events [queue:end] Run id: 4183eaf664b71405dfdec965219ae1b4
info: LOCAL testUser12 [8298]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 4183eaf664b71405dfdec965219ae1b4
info: LOCAL testUser11 [8292]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 4183eaf664b71405dfdec965219ae1b4
info: LOCAL testUser11 [8292]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser12 [8298]: testUser12 triggering runner
info: LOCAL testUser12 [8298]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser12 [8298]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser12 [8298]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 4183eaf664b71405dfdec965219ae1b4
info: LOCAL testUser12 [8298]: LocalPipelineRunnerPool.events [queue:start] Run id: %s 4183eaf664b71405dfdec965219ae1b4
info: LOCAL testUser12 [8298]: LocalPipelineRunnerPool.events [run:start] Result:
info: LOCAL testUser12 [8298]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 4183eaf664b71405dfdec965219ae1b4
info: LOCAL testUser11 [8292]: LocalPipelineRunnerPool.events [run:end] Computation result:
info: LOCAL testUser11 [8292]: LocalPipelineRunnerPool.events [queue:end] Run id: %s 4183eaf664b71405dfdec965219ae1b4
Errored while running npm script 'test' in 'coinstac-distributed-algorithm-integration'
Error: Command failed: npm run test
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8282]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8282]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8282]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8282]: db.type() is deprecated and will be removed in a future version of PouchDB
error: LOCAL testUser11 [8292]: caught per expectation
error: REMOTE [8282]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8282]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8282]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8282]: db.type() is deprecated and will be removed in a future version of PouchDB
error: LOCAL testUser12 [8298]: Command failed to run:
python ./handled-error.py --run {"computationId":"AF4F4944-0C44-35E2-9A1C-ACE69508FC65","consortiumId":"testconsortiumid1495523912493","remoteResult":{"pluginState":{"inputs":[[[{"name":"Is Control","type":"boolean"}]]]},"computationId":"AF4F4944-0C44-35E2-9A1C-ACE69508FC65","consortiumId":"testconsortiumid1495523912493","_id":"4183eaf664b71405dfdec965219ae1b4","complete":false,"computationInputs":[[[{"name":"Is Control","type":"boolean"}]]],"startDate":1495523915243,"usernames":[]},"username":"testUser12","userData":{"name":"testUser12's project","computationInputs":[[[{"name":"Is Control","type":"boolean"}]]],"consortiumId":"testconsortiumid1495523912493","files":[{"filename":"/home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-simulator/test/Test Data/M1/x/data.txt","tags":{"isControl":false}},{"filename":"/home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-simulator/test/Test Data/M1/y/data.txt","tags":{"isControl":true}},{"filename":"/home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-simulator/test/Test Data/M2/x/data.txt","tags":{"isControl":false}},{"filename":"/home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-simulator/test/Test Data/M2/y/data.txt","tags":{"isControl":true}}],"metaFile":[["filename","isControl"],["./M1/x/data.txt","0"],["./M1/y/data.txt","1"],["./M2/x/data.txt","0"],["./M2/y/data.txt","1"]],"metaFilePath":"/home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-simulator/test/Test Data/metadata.csv","metaCovariateMapping":{"1":0},"_id":"5BF09B1E-8883-F81B-ACC0-3DDB70C19479","_rev":"3-fbb43b9cb4403c0a796279888c56551b"}}
stdout:
{
"test": "result"
}
stderr:
caught per expectationpyenv: cannot rehash: /home/rof/.pyenv/shims/.pyenv-shim exists
error: LOCAL testUser12 [8298]: Error: Process exited with code 1:
caught per expectationpyenv: cannot rehash: /home/rof/.pyenv/shims/.pyenv-shim exists
at ChildProcess.cmd.on.error (/home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-common/src/models/computation/command-computation.js:75:25)
at emitTwo (events.js:106:13)
at ChildProcess.emit (events.js:191:7)
at Process.ChildProcess._handle.onexit (internal/child_process.js:215:12)
error: LOCAL testUser11 [8292]: caught per expectation
error: LOCAL testUser12 [8298]: Unhandled Rejection at: Promise Promise {
<rejected> { Error: Process exited with code 1:
caught per expectationpyenv: cannot rehash: /home/rof/.pyenv/shims/.pyenv-shim exists
at ChildProcess.cmd.on.error (/home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-common/src/models/computation/command-computation.js:75:25)
at emitTwo (events.js:106:13)
at ChildProcess.emit (events.js:191:7)
at Process.ChildProcess._handle.onexit (internal/child_process.js:215:12) isRunError: true } } reason:
Local process exited with code 1
Error: Local process exited with code 1
at ChildProcess.localProcess.on.code (/home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-simulator/src/boot-locals.js:45:15)
at emitTwo (events.js:106:13)
at ChildProcess.emit (events.js:191:7)
at Process.ChildProcess._handle.onexit (internal/child_process.js:215:12)
ERROR: Coverage for branches (87.1%) does not meet global threshold (90%)
npm ERR! Linux 4.2.0-42-generic
npm ERR! argv "/home/rof/.nvm/versions/node/v6.10.3/bin/node" "/home/rof/.nvm/versions/node/v6.10.3/bin/npm" "run" "test"
npm ERR! node v6.10.3
npm ERR! npm v3.10.10
npm ERR! code ELIFECYCLE
npm ERR! coinstac-distributed-algorithm-integration@2.5.0 test: `cross-env BLUEBIRD_WARNINGS=0 nyc --reporter=lcov --check-coverage --functions=90 --branches=90 node test/`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the coinstac-distributed-algorithm-integration@2.5.0 test script 'cross-env BLUEBIRD_WARNINGS=0 nyc --reporter=lcov --check-coverage --functions=90 --branches=90 node test/'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the coinstac-distributed-algorithm-integration package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR! cross-env BLUEBIRD_WARNINGS=0 nyc --reporter=lcov --check-coverage --functions=90 --branches=90 node test/
npm ERR! You can get information on how to open an issue for this project with:
npm ERR! npm bugs coinstac-distributed-algorithm-integration
npm ERR! Or if that isn't available, you can get their info via:
npm ERR! npm owner ls coinstac-distributed-algorithm-integration
npm ERR! There is likely additional logging output above.
npm ERR! Please include the following file with any support request:
npm ERR! /home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-decentralized-algorithm-integration/npm-debug.log
at ChildProcess.exithandler (child_process.js:204:12)
at emitTwo (events.js:106:13)
at ChildProcess.emit (events.js:191:7)
at maybeClose (internal/child_process.js:886:16)
at Process.ChildProcess._handle.onexit (internal/child_process.js:226:5)
Errored while running RunCommand.execute
Error: Command failed: npm run test
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8117]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8177]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8240]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8282]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8282]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8282]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8282]: db.type() is deprecated and will be removed in a future version of PouchDB
error: LOCAL testUser11 [8292]: caught per expectation
error: REMOTE [8282]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8282]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8282]: db.type() is deprecated and will be removed in a future version of PouchDB
error: REMOTE [8282]: db.type() is deprecated and will be removed in a future version of PouchDB
error: LOCAL testUser12 [8298]: Command failed to run:
python ./handled-error.py --run {"computationId":"AF4F4944-0C44-35E2-9A1C-ACE69508FC65","consortiumId":"testconsortiumid1495523912493","remoteResult":{"pluginState":{"inputs":[[[{"name":"Is Control","type":"boolean"}]]]},"computationId":"AF4F4944-0C44-35E2-9A1C-ACE69508FC65","consortiumId":"testconsortiumid1495523912493","_id":"4183eaf664b71405dfdec965219ae1b4","complete":false,"computationInputs":[[[{"name":"Is Control","type":"boolean"}]]],"startDate":1495523915243,"usernames":[]},"username":"testUser12","userData":{"name":"testUser12's project","computationInputs":[[[{"name":"Is Control","type":"boolean"}]]],"consortiumId":"testconsortiumid1495523912493","files":[{"filename":"/home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-simulator/test/Test Data/M1/x/data.txt","tags":{"isControl":false}},{"filename":"/home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-simulator/test/Test Data/M1/y/data.txt","tags":{"isControl":true}},{"filename":"/home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-simulator/test/Test Data/M2/x/data.txt","tags":{"isControl":false}},{"filename":"/home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-simulator/test/Test Data/M2/y/data.txt","tags":{"isControl":true}}],"metaFile":[["filename","isControl"],["./M1/x/data.txt","0"],["./M1/y/data.txt","1"],["./M2/x/data.txt","0"],["./M2/y/data.txt","1"]],"metaFilePath":"/home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-simulator/test/Test Data/metadata.csv","metaCovariateMapping":{"1":0},"_id":"5BF09B1E-8883-F81B-ACC0-3DDB70C19479","_rev":"3-fbb43b9cb4403c0a796279888c56551b"}}
stdout:
{
"test": "result"
}
stderr:
caught per expectationpyenv: cannot rehash: /home/rof/.pyenv/shims/.pyenv-shim exists
error: LOCAL testUser12 [8298]: Error: Process exited with code 1:
caught per expectationpyenv: cannot rehash: /home/rof/.pyenv/shims/.pyenv-shim exists
at ChildProcess.cmd.on.error (/home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-common/src/models/computation/command-computation.js:75:25)
at emitTwo (events.js:106:13)
at ChildProcess.emit (events.js:191:7)
at Process.ChildProcess._handle.onexit (internal/child_process.js:215:12)
error: LOCAL testUser11 [8292]: caught per expectation
error: LOCAL testUser12 [8298]: Unhandled Rejection at: Promise Promise {
<rejected> { Error: Process exited with code 1:
caught per expectationpyenv: cannot rehash: /home/rof/.pyenv/shims/.pyenv-shim exists
at ChildProcess.cmd.on.error (/home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-common/src/models/computation/command-computation.js:75:25)
at emitTwo (events.js:106:13)
at ChildProcess.emit (events.js:191:7)
at Process.ChildProcess._handle.onexit (internal/child_process.js:215:12) isRunError: true } } reason:
Local process exited with code 1
Error: Local process exited with code 1
at ChildProcess.localProcess.on.code (/home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-simulator/src/boot-locals.js:45:15)
at emitTwo (events.js:106:13)
at ChildProcess.emit (events.js:191:7)
at Process.ChildProcess._handle.onexit (internal/child_process.js:215:12)
ERROR: Coverage for branches (87.1%) does not meet global threshold (90%)
npm ERR! Linux 4.2.0-42-generic
npm ERR! argv "/home/rof/.nvm/versions/node/v6.10.3/bin/node" "/home/rof/.nvm/versions/node/v6.10.3/bin/npm" "run" "test"
npm ERR! node v6.10.3
npm ERR! npm v3.10.10
npm ERR! code ELIFECYCLE
npm ERR! coinstac-distributed-algorithm-integration@2.5.0 test: `cross-env BLUEBIRD_WARNINGS=0 nyc --reporter=lcov --check-coverage --functions=90 --branches=90 node test/`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the coinstac-distributed-algorithm-integration@2.5.0 test script 'cross-env BLUEBIRD_WARNINGS=0 nyc --reporter=lcov --check-coverage --functions=90 --branches=90 node test/'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the coinstac-distributed-algorithm-integration package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR! cross-env BLUEBIRD_WARNINGS=0 nyc --reporter=lcov --check-coverage --functions=90 --branches=90 node test/
npm ERR! You can get information on how to open an issue for this project with:
npm ERR! npm bugs coinstac-distributed-algorithm-integration
npm ERR! Or if that isn't available, you can get their info via:
npm ERR! npm owner ls coinstac-distributed-algorithm-integration
npm ERR! There is likely additional logging output above.
npm ERR! Please include the following file with any support request:
npm ERR! /home/rof/src/github.com/MRN-Code/coinstac/packages/coinstac-decentralized-algorithm-integration/npm-debug.log
at ChildProcess.exithandler (child_process.js:204:12)
at emitTwo (events.js:106:13)
at ChildProcess.emit (events.js:191:7)
at maybeClose (internal/child_process.js:886:16)
at Process.ChildProcess._handle.onexit (internal/child_process.js:226:5)
npm ERR! Test failed. See above for more details.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment