Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
SoloJacobs committed Jun 25, 2024
1 parent 5fcd688 commit d1d3f33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bin/scheduler/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ pub fn build_environments(
fn build_environment(
id: &str,
environment: &Environment,
sesssion: &Session,
session: &Session,
cancellation_token: &CancellationToken,
build_stage_reporter: &mut BuildStageReporter,
working_directory: &Utf8Path,
Expand All @@ -75,7 +75,7 @@ fn build_environment(
id,
EnvironmentBuildStage::InProgress(start_time.timestamp()),
)?;
let outcome = run_build_command(id, &run_spec, sesssion, start_time).context(format!(
let outcome = run_build_command(id, &run_spec, session, start_time).context(format!(
"Received termination signal while building environment for plan {id}"
))?;
build_stage_reporter.update(id, EnvironmentBuildStage::Complete(outcome.clone()))?;
Expand Down

0 comments on commit d1d3f33

Please sign in to comment.