Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libfibre
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Bryant Curto
libfibre
Commits
da11bd74
Commit
da11bd74
authored
3 years ago
by
Bryant Curto
Browse files
Options
Downloads
Patches
Plain Diff
Fixed off-by-one bug associated with getting Migrator worker ids.
parent
86111faf
No related branches found
No related tags found
No related merge requests found
Pipeline
#57404
failed with stage
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/runtime/Migrator.cc
+1
-1
1 addition, 1 deletion
src/runtime/Migrator.cc
with
1 addition
and
1 deletion
src/runtime/Migrator.cc
+
1
−
1
View file @
da11bd74
...
...
@@ -169,7 +169,7 @@ size_t Migrator::getWorkerSysIDs(size_t& numGroups, size_t& numWorkersPerGroup,
for
(
size_t
g
=
0
;
g
<
numGroups
;
++
g
)
{
for
(
size_t
w
=
0
;
w
<
numWorkersPerGroup
;
++
w
)
{
tid
[
i
++
]
=
getWorker
(
w
,
g
).
getSysID
();
if
(
i
==
tidSize
-
1
)
{
if
(
i
==
tidSize
)
{
goto
Finish
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Bryant Curto
@bcurto
mentioned in commit
12e2940d
·
3 years ago
mentioned in commit
12e2940d
mentioned in commit 12e2940dd96aca6aeae609126a72f20b193aab4e
Toggle commit list
Bryant Curto
@bcurto
mentioned in commit
d37600f5
·
3 years ago
mentioned in commit
d37600f5
mentioned in commit d37600f58e66ee33416bf302c8594685a4d13295
Toggle commit list
Bryant Curto
@bcurto
mentioned in commit
a554eda7
·
3 years ago
mentioned in commit
a554eda7
mentioned in commit a554eda7d00dbec329601544470724301a8beff2
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment