Skip to content

Commit b4e30c8

Browse files
committed
fix(native): Be happy, don't panic
1 parent 6351b6e commit b4e30c8

File tree

1 file changed

+1
-1
lines changed
  • packages/cubejs-backend-native/src/python

1 file changed

+1
-1
lines changed

packages/cubejs-backend-native/src/python/runtime.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ impl PyRuntime {
6060
let permit = match self.sender.try_reserve() {
6161
Ok(permit) => permit,
6262
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.");
63+
log::warn!("Python channel is full, this may cause performance issues. Consider increasing the channel size for PyRuntime.");
6464

6565
// Channel is full, use async reserve with blocking for efficiency
6666
match futures::executor::block_on(self.sender.reserve()) {

0 commit comments

Comments
 (0)