The job_run_logs table tracks scheduled job orchestration, not individual worker jobs. Worker info (worker_id, worker_hostname) belongs on dispensary_crawl_jobs, not job_run_logs. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
17 lines
312 B
JavaScript
17 lines
312 B
JavaScript
var cc =require('../lib/utils')
|
|
var INI = require('ini')
|
|
var assert = require('assert')
|
|
|
|
function test(obj) {
|
|
|
|
var _json, _ini
|
|
var json = cc.parse (_json = JSON.stringify(obj))
|
|
var ini = cc.parse (_ini = INI.stringify(obj))
|
|
console.log(_ini, _json)
|
|
assert.deepEqual(json, ini)
|
|
}
|
|
|
|
|
|
test({hello: true})
|
|
|