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 6351b6e commit b4e30c8Copy full SHA for b4e30c8
packages/cubejs-backend-native/src/python/runtime.rs
@@ -60,7 +60,7 @@ impl PyRuntime {
60
let permit = match self.sender.try_reserve() {
61
Ok(permit) => permit,
62
Err(tokio::sync::mpsc::error::TrySendError::Full(_)) => {
63
- log::warn!("Python channel is full, using async reserve. This may cause performance issues. Consider increasing the channel size for PyRuntime.");
+ log::warn!("Python channel is full, this may cause performance issues. Consider increasing the channel size for PyRuntime.");
64
65
// Channel is full, use async reserve with blocking for efficiency
66
match futures::executor::block_on(self.sender.reserve()) {
0 commit comments