Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 2 additions & 0 deletions crates/clickhouse-cloud-api/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
//! # clickhouse-cloud-api
//!
//! <!-- CI baseline check: no-op change to trigger path-filtered workflows. -->
//!
//! Typed Rust client for the ClickHouse Cloud API.
//!
//! ## Usage
Expand Down
7 changes: 5 additions & 2 deletions crates/clickhouse-cloud-api/tests/integration_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2026,10 +2026,13 @@ async fn cloud_service_crud_lifecycle() -> TestResult<()> {
weekdays: vec![0], // Sunday only
start_hour_utc: 1,
end_hour_utc: 2,
// The API rejects an entry that sets both the replica-count
// knobs and the replica-memory knobs together. The test
// service scales by memory, so only set the memory bounds.
min_replica_memory_gb: Some(base_memory_gb),
max_replica_memory_gb: Some(base_memory_gb),
min_replicas: Some(base_replicas as i64),
max_replicas: Some(base_replicas as i64),
min_replicas: None,
max_replicas: None,
idle_scaling: Some(true),
idle_timeout_minutes: Some(5),
};
Expand Down
1 change: 1 addition & 0 deletions crates/clickhousectl/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// CI baseline check: no-op change to trigger path-filtered workflows.
mod cli;
mod cloud;
mod dotenv;
Expand Down