Skip to content

Commit

Permalink
debug: remove b64 decoding
Browse files Browse the repository at this point in the history
Signed-off-by: Victor Adossi <[email protected]>
  • Loading branch information
vados-cosmonic committed Sep 28, 2024
1 parent 5fda975 commit 0d0696d
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions tests/e2e.rs
Original file line number Diff line number Diff line change
Expand Up @@ -473,10 +473,11 @@ pub async fn get_manifest_status_info(
.get_last_raw_message_by_subject(&format!("wadm.status.{lattice_id}.{name}",))
.await
.map(|raw| {
eprintln!("RAW VALUE {}", String::from_utf8_lossy(&raw.payload));
B64decoder
.decode(raw.payload)
.map(|b| serde_json::from_slice::<Status>(&b))
serde_json::from_slice::<Status>(&b)
// eprintln!("RAW VALUE {}", String::from_utf8_lossy(&raw.payload));
// B64decoder
// .decode(raw.payload)
// .map(|b| serde_json::from_slice::<Status>(&b))
}) {
Ok(Ok(Ok(status))) => Some(status.info),
// Model status doesn't exist or is invalid, assuming undeployed
Expand Down

0 comments on commit 0d0696d

Please sign in to comment.