File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
src/remote/connection/fetch/update_refs Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ pub(crate) fn update(
133
133
. ancestors ( |id, buf| repo. objects . find_commit_iter ( id, buf) )
134
134
. sorting (
135
135
gix_traverse:: commit:: Sorting :: ByCommitTimeNewestFirstCutoffOlderThan {
136
- time_in_seconds_since_epoch : local_commit_time
136
+ seconds : local_commit_time
137
137
} ,
138
138
)
139
139
. map_err ( |_| ( ) )
Original file line number Diff line number Diff line change @@ -123,9 +123,7 @@ mod ancestors {
123
123
for sorting in [
124
124
commit:: Sorting :: BreadthFirst ,
125
125
commit:: Sorting :: ByCommitTimeNewestFirst ,
126
- commit:: Sorting :: ByCommitTimeNewestFirstCutoffOlderThan {
127
- time_in_seconds_since_epoch : 0 ,
128
- } ,
126
+ commit:: Sorting :: ByCommitTimeNewestFirstCutoffOlderThan { seconds : 0 } ,
129
127
] {
130
128
let commits_graph_order = head
131
129
. ancestors ( )
You can’t perform that action at this time.
0 commit comments