Skip to content

Commit

Permalink
Oops
Browse files Browse the repository at this point in the history
  • Loading branch information
MyBlackMIDIScore committed Aug 8, 2024
1 parent b0cdb05 commit a02b505
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/src/channel_group/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ pub struct ParallelismOptions {
}

impl ParallelismOptions {
const AUTO_PER_KEY: Self = ParallelismOptions {
pub const AUTO_PER_KEY: Self = ParallelismOptions {
channel: ThreadCount::None,
key: ThreadCount::Auto,
};

const AUTO_PER_CHANNEL: Self = ParallelismOptions {
pub const AUTO_PER_CHANNEL: Self = ParallelismOptions {
channel: ThreadCount::Auto,
key: ThreadCount::None,
};
Expand All @@ -58,7 +58,7 @@ impl Default for ParallelismOptions {
ParallelismOptions {
channel: ThreadCount::Auto,
key: ThreadCount::Auto,
}
}
}
}

Expand Down

0 comments on commit a02b505

Please sign in to comment.