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

Fix network tables #815

Merged
merged 6 commits into from
Nov 13, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Remove unnecessary sendAll from NT tab generator code
We don't write to the metadata topics, it's all sent over from the server
SamCarlberg committed Nov 1, 2024

Verified

This commit was signed with the committer’s verified signature.
SamCarlberg Sam Carlberg
commit 5b4b3b9a2db6cc904ce6df6ae0715a8ff3e480ae
Original file line number Diff line number Diff line change
@@ -102,7 +102,7 @@ public void start() {
});

metadataSubscriber =
new MultiSubscriber(inst, new String[] {METADATA_TABLE_NAME + "/"}, PubSubOption.sendAll(true));
new MultiSubscriber(inst, new String[] {METADATA_TABLE_NAME + "/"});
metadataListener = inst.addListener(
metadataSubscriber,
EnumSet.of(NetworkTableEvent.Kind.kValueAll, NetworkTableEvent.Kind.kImmediate),