Commit 92b06d465dbb1b006847f4c0f5d3c96c5856cf71

Authored by adi surya
1 parent a763dfeea0
Exists in master

fix pid error

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

1 1 "use strict";
2 2 process.chdir(__dirname);
3 3 const fs = require('fs');
4   -fs.writeFileSync('pid.txt', process.pid);
  4 +fs.writeFileSync('pid.txt', process.pid.toString());
5 5  
6 6 const apiserver = require('komodo-sdk/api-server');
7 7 const pullgw = require('komodo-sdk/gateway/pull');