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 518a532 commit d7216dfCopy full SHA for d7216df
database/src/pool/postgres.rs
@@ -2161,11 +2161,11 @@ where
2161
// This is ever-so-slightly grim however it allows us to not
2162
// have to parse the text representation of the jobs. Which
2163
// saves a reasonable amount of time to justify doing this.
2164
- let include_parent = it.get::<_, bool>("parent_active");
+ let parent_active = it.get::<_, bool>("parent_active");
2165
2166
InProgressRequestWithJobs {
2167
request: (benchmark_request, jobs),
2168
- parent: if include_parent {
+ parent: if parent_active {
2169
// only parse the jobs if we need to include the parent
2170
let parent_jobs: Vec<BenchmarkJob> = it
2171
.get::<_, Vec<String>>("parent_jobs")
0 commit comments