Skip to content

Commit c439c8a

Browse files
authored
Attempt to fix StorageNodeClient.query_catalog(…) signature mismatch (#8468)
### Related <!-- Include links to any related issues/PRs in a bulleted list, for example: * Closes #1234 * Part of #1337 --> CI is failing on `nightly`: https://github.com/rerun-io/rerun/actions/runs/12335447188/job/34427482723 ### What Seems to be a mismatch between doc strings. <!-- Make sure the PR title and labels are set to maximize their usefulness for the CHANGELOG, and our `git log`. If you have noticed any breaking changes, include them in the migration guide. We track various metrics at <https://build.rerun.io>. For maintainers: * To run all checks from `main`, comment on the PR with `@rerun-bot full-check`. * To deploy documentation changes immediately after merging this PR, add the `deploy docs` label. -->
1 parent 4ccfcef commit c439c8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rerun_py/src/remote.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ pub struct PyStorageNodeClient {
8181

8282
#[pymethods]
8383
impl PyStorageNodeClient {
84-
/// Query the recordings metadata catalog.
84+
/// Get the metadata for all recordings in the storage node.
8585
fn query_catalog(&mut self) -> PyResult<PyArrowType<Box<dyn RecordBatchReader + Send>>> {
8686
let reader = self.runtime.block_on(async {
8787
// TODO(jleibs): Support column projection and filtering

0 commit comments

Comments
 (0)