Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Arroyo to 2.17.6 #6289

Merged
merged 6 commits into from
Sep 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ pytest-watch==4.2.0
python-dateutil==2.8.2
python-rapidjson==1.8
redis==4.3.4
sentry-arroyo==2.17.1
sentry-arroyo==2.17.6
sentry-kafka-schemas==0.1.106
sentry-redis-tools==0.3.0
sentry-relay==0.8.44
Expand Down
4 changes: 2 additions & 2 deletions rust_snuba/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions rust_snuba/bin/python_processor_infinite.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ fn main() {
let output2 = output.clone();

let step = RunTask::new(
move |_| {
move |message| {
output2.fetch_add(1, Ordering::Relaxed);
Ok(())
Ok(message)
},
step,
);
Expand Down
4 changes: 4 additions & 0 deletions snuba/subscriptions/scheduler_consumer.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,10 @@ def close(self, timeout: Optional[float] = None) -> None:
def closed(self) -> bool:
return self.__consumer.closed

@property
def member_id(self) -> str:
return self.__consumer.member_id


class SchedulerBuilder:
def __init__(
Expand Down
Loading