We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc061e6 commit 0df375bCopy full SHA for 0df375b
src/cloud/api.rs
@@ -38,8 +38,6 @@ pub struct Response {
38
pub private: bool,
39
pub size: u64,
40
pub db_name: String,
41
-
42
- #[serde(rename = "createdAt")]
43
pub created_at: String,
44
}
45
src/cloud/pull.rs
@@ -88,6 +88,7 @@ impl Pull {
88
None,
89
None
90
).download(&api_data.url).await;
91
+
92
match download {
93
Ok(ref sql_content) => {
94
Import::new(
@@ -101,6 +102,7 @@ impl Pull {
101
102
Some(sql_content),
103
).dump_directly().await?;
104
105
106
Err(e) => {
107
ErrorsAlerts::dump(&format!("Failed to download SQL data: {}", e));
108
return Err(e);
0 commit comments