We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 773c1cb commit 838ed03Copy full SHA for 838ed03
1 file changed
libsql-server/src/namespace/configurator/replica.rs
@@ -2,6 +2,7 @@ use std::pin::Pin;
2
use std::sync::atomic::AtomicBool;
3
use std::sync::Arc;
4
5
+use chrono::{DateTime, Utc};
6
use futures::Future;
7
use hyper::Uri;
8
use libsql_replication::rpc::replication::log_offset::WalFlavor;
@@ -255,7 +256,7 @@ impl ConfigureNamespace for ReplicaConfigurator {
255
256
_from_config: MetaStoreHandle,
257
_to_ns: NamespaceName,
258
_to_config: MetaStoreHandle,
- _timestamp: Option<chrono::prelude::NaiveDateTime>,
259
+ _timestamp: Option<DateTime<Utc>>,
260
_store: NamespaceStore,
261
) -> Pin<Box<dyn Future<Output = crate::Result<Namespace>> + Send + 'a>> {
262
Box::pin(std::future::ready(Err(crate::Error::Fork(
0 commit comments