We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f832bf0 commit 884f996Copy full SHA for 884f996
src/main/ruby/lib/merritt_zk_job.rb
@@ -253,7 +253,7 @@ def title
253
def self.list_jobs(zk)
254
jobs = []
255
zk.children(DIR).sort.each do |cp|
256
- jobs.append(LegacyIngestJob.new(cp).load(zk))
+ jobs.append(LegacyIngestJob.new(cp).load(zk).payload_object)
257
end
258
jobs
259
src/main/ruby/lib/merritt_zk_queue_item.rb
@@ -138,7 +138,6 @@ def initialize(id)
138
139
140
def load(zk)
141
- puts "LOAD: #{dir}/#{@id}"
142
arr = zk.get("#{dir}/#{@id}")
143
return if arr.nil?
144
payload = arr[0]
0 commit comments