Skip to content

Commit e04ffd1

Browse files
committed
fix(writer): revert writer due to bad merge conflict
Signed-off-by: Florian Valeye <[email protected]>
1 parent 27405f7 commit e04ffd1

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

crates/core/src/logstore/storage/runtime.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ use object_store::{
1515
use object_store::{MultipartUpload, PutMultipartOptions};
1616
use serde::{Deserialize, Serialize};
1717
use tokio::runtime::{Builder as RuntimeBuilder, Handle, Runtime};
18-
use tracing::*;
1918

2019
/// Creates static IO Runtime with optional configuration
2120
fn io_rt(config: Option<&RuntimeConfig>) -> &Runtime {

crates/core/src/operations/write/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,7 @@ impl std::future::IntoFuture for WriteBuilder {
550550

551551
let source = LogicalPlan::Extension(Extension {
552552
node: Arc::new(MetricObserver {
553-
id: SOURCE_COUNT_ID.into(),
553+
id: "write_source_count".into(),
554554
input: source.logical_plan().clone(),
555555
enable_pushdown: false,
556556
}),

python/pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ dependencies = ["arro3-core>=0.5.0", "deprecated>=1.2.18"]
2222
[project.optional-dependencies]
2323
pandas = ["pandas"]
2424
pyarrow = ["pyarrow>=16"]
25-
opentelemetry = ["opentelemetry-sdk>=1.20.0", "opentelemetry-api>=1.20.0"]
2625

2726
[project.urls]
2827
documentation = "https://delta-io.github.io/delta-rs/"

0 commit comments

Comments
 (0)