Skip to content

Commit

Permalink
deployer: fix resource sqlite deser
Browse files Browse the repository at this point in the history
  • Loading branch information
iulianbarbu committed Jul 20, 2023
1 parent c00896e commit 4325f2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deployer/src/persistence/resource/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ impl FromRow<'_, SqliteRow> for Resource {
service_id: Ulid::from_string(row.try_get("service_id")?)
.expect("to have a valid ulid string"),
r#type: row.try_get("type")?,
data: row.try_get("")?,
config: row.try_get("is_next")?,
data: row.try_get("data")?,
config: row.try_get("config")?,
})
}
}
Expand Down

0 comments on commit 4325f2c

Please sign in to comment.