diff --git a/.circleci/config.yml b/.circleci/config.yml index f7466037..13181e80 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,14 +6,11 @@ # version: 2.1 commands: - setup-rust: + display-rust: steps: - run: - name: Setup Rust - command: | - rustup install 1.60.0 - rustup default 1.60.0 - rustup update + name: Display Rust Version + command: rustc --version setup-rust-check: steps: @@ -169,7 +166,7 @@ jobs: password: $DOCKER_PASS steps: - checkout - - setup-rust + - display-rust - setup-rust-check - setup-gcp-grpc - rust-check @@ -210,7 +207,7 @@ jobs: echo "${DOCKER_PASS}" | docker login -u="${DOCKER_USER}" --password-stdin fi - checkout - - setup-rust + - display-rust - setup-python - setup-gcp-grpc - setup-mysql diff --git a/syncstorage/src/web/handlers.rs b/syncstorage/src/web/handlers.rs index 4e7514e9..9715f0f1 100644 --- a/syncstorage/src/web/handlers.rs +++ b/syncstorage/src/web/handlers.rs @@ -365,7 +365,7 @@ pub async fn post_collection_batch( if !coll.bsos.valid.is_empty() { // Append the data to the requested batch. let result = { - dbg!("Batch: Appending to {}", &new_batch.id); + trace!("Batch: Appending to {}", &new_batch.id); db.append_to_batch(params::AppendToBatch { user_id: coll.user_id.clone(), collection: coll.collection.clone(),