Skip to content

Commit

Permalink
Flip refinedXBeam and refinedYBeam
Browse files Browse the repository at this point in the history
  • Loading branch information
iamvigneshwars committed May 24, 2024
1 parent 2e70274 commit 0b667a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions processed_data/src/graphql/entities.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ impl From<QueryResult> for AutoProcessing {
auto_proc_integration_id: value.try_get("", "autoProcIntegrationId").unwrap(),
data_collection_id: value.try_get("", "dataCollectionId").unwrap(),
auto_proc_program_id: value.try_get("", "autoProcProgramId").unwrap_or(None),
refined_x_beam: value.try_get("", "refinedXBeam").unwrap_or(None),
refined_y_beam: value.try_get("", "refinedYBeam").unwrap_or(None),
refined_x_beam: value.try_get("", "refinedYBeam").unwrap_or(None),
refined_y_beam: value.try_get("", "refinedXBeam").unwrap_or(None),
processing_programs: value.try_get("", "processingPrograms").unwrap_or(None),
processing_status: value.try_get("", "processingStatus").unwrap_or(None),
processing_message: value.try_get("", "processingMessage").unwrap_or(None),
Expand Down

0 comments on commit 0b667a7

Please sign in to comment.