Skip to content

Commit 316e8d8

Browse files
add spicehq org tag
chore: auto-fix cargo fmt + clippy
1 parent 7d1f49a commit 316e8d8

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/run_spicebench_debug_spice_cloud.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@ jobs:
177177
EXECUTOR_REPLICAS: ${{ github.event.inputs.executor_replicas || '4' }}
178178
SPIDAPTER_APP_MEMORY_LIMIT: ${{ github.event.inputs.app_memory_limit || '16Gi' }}
179179
SPIDAPTER_EXECUTOR_MEMORY_LIMIT: ${{ github.event.inputs.executor_memory_limit || '16Gi' }}
180+
SPIDAPTER_ORGANIZATION_TAG: 'spicehq'
180181
CUSTOM_IMAGE: ${{ github.event.inputs.custom_image || '' }}
181182
run: |
182183
set -euo pipefail
@@ -225,6 +226,7 @@ jobs:
225226
226227
ADAPTER_DOCKER_OPTS="${ADAPTER_DOCKER_OPTS} -e SPIDAPTER_APP_MEMORY_LIMIT=${SPIDAPTER_APP_MEMORY_LIMIT}"
227228
ADAPTER_DOCKER_OPTS="${ADAPTER_DOCKER_OPTS} -e SPIDAPTER_EXECUTOR_MEMORY_LIMIT=${SPIDAPTER_EXECUTOR_MEMORY_LIMIT}"
229+
ADAPTER_DOCKER_OPTS="${ADAPTER_DOCKER_OPTS} -e SPIDAPTER_ORGANIZATION_TAG"
228230
229231
# Parse custom image into registry, name, and tag for spidapter.
230232
# Expected format: registry/image:tag (e.g. ghcr.io/spiceai/spiceai-dev:spicebench-sf10)

src/commands/load/mod.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -656,9 +656,7 @@ async fn run_checkpoint_validation(
656656
// Phase 0: validate table row counts first as a fast correctness probe.
657657
// Row count queries are cheap and immediately surface data loss/duplication
658658
// without waiting for expensive analytical queries to converge.
659-
println!(
660-
"Checkpoint {checkpoint_idx}: validating table row counts before probing queries",
661-
);
659+
println!("Checkpoint {checkpoint_idx}: validating table row counts before probing queries",);
662660
{
663661
let mut row_count_ticker = tokio::time::interval(probe_period);
664662
let mut row_count_attempt = 0u64;

0 commit comments

Comments
 (0)