Skip to content

Commit

Permalink
specs
Browse files Browse the repository at this point in the history
  • Loading branch information
mensfeld committed Sep 10, 2023
1 parent 786c96a commit c4a5e5d
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,12 @@
poll_state: 'active',
hi_offset: 10,
lag_d: 10,
lag: 10
lag: 10,
lo_offset: 0,
eof_offset: 0,
ls_offset: 0,
ls_offset_d: 0,
ls_offset_fd: 0
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,17 @@
lag_stored_d: 0,
lag: 0,
lag_d: 0,
hi_offset: 0,
committed_offset: 18,
stored_offset: 18,
fetch_state: 'active',
id: 0,
poll_state: 'active'
poll_state: 'active',
hi_offset: 1,
lo_offset: 0,
eof_offset: 0,
ls_offset: 0,
ls_offset_d: 0,
ls_offset_fd: 0
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,12 @@
lag_d: 0,
committed_offset: 100,
stored_offset: 95,
hi_offset: 2
hi_offset: 2,
lo_offset: 0,
eof_offset: 0,
ls_offset: 0,
ls_offset_d: 0,
ls_offset_fd: 0
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,14 @@
lag_d: 1,
committed_offset: 100,
stored_offset: 95,
hi_offset: 10
fetch_state: 'active',
poll_state: 'active',
hi_offset: 1,
lo_offset: 0,
eof_offset: 0,
ls_offset: 0,
ls_offset_d: 0,
ls_offset_fd: 0
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion spec/lib/karafka/web/tracking/sampler_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
it { expect(sampler.ruby_version).to start_with('ruby ') }
it { expect(sampler.karafka_version).to include('2.2.') }
it { expect(sampler.karafka_web_version).to include('0.7.') }
it { expect(sampler.karafka_core_version).to include('2.1.') }
it { expect(sampler.karafka_core_version).to include('2.2.') }
it { expect(sampler.rdkafka_version).to start_with('0.1') }
it { expect(sampler.librdkafka_version).to start_with('2.2') }
it { expect(sampler.waterdrop_version).to start_with('2.') }
Expand Down

0 comments on commit c4a5e5d

Please sign in to comment.