Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
client
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Contributor 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
elixxir
client
Commits
fa2bb429
Commit
fa2bb429
authored
2 years ago
by
Jake Taylor
Browse files
Options
Downloads
Patches
Plain Diff
added print for 4170
parent
125128c0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
3 merge requests
!510
Release
,
!365
attempt to fix mutex segfault in HandleReceivedRequest
,
!354
Channels impl
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ud/store/store.go
+5
-4
5 additions, 4 deletions
ud/store/store.go
with
5 additions
and
4 deletions
ud/store/store.go
+
5
−
4
View file @
fa2bb429
...
...
@@ -29,7 +29,7 @@ const (
// Error constants
const
(
malformedFactErr
=
"Failed to load due to "
+
"malformed fact"
"malformed fact
: %s
"
loadConfirmedFactErr
=
"Failed to load confirmed facts"
loadUnconfirmedFactErr
=
"Failed to load unconfirmed facts"
saveUnconfirmedFactErr
=
"Failed to save unconfirmed facts"
...
...
@@ -53,8 +53,8 @@ func newStore(kv *versioned.KV) (*Store, error) {
kv
=
kv
.
Prefix
(
prefix
)
s
:=
&
Store
{
confirmedFacts
:
make
(
map
[
fact
.
Fact
]
struct
{}
,
0
),
unconfirmedFacts
:
make
(
map
[
string
]
fact
.
Fact
,
0
),
confirmedFacts
:
make
(
map
[
fact
.
Fact
]
struct
{}),
unconfirmedFacts
:
make
(
map
[
string
]
fact
.
Fact
),
kv
:
kv
,
}
...
...
@@ -276,7 +276,8 @@ func (s *Store) unmarshalUnconfirmedFacts(data []byte) (map[string]fact.Fact, er
ufd
:=
ufdList
[
i
]
f
,
err
:=
fact
.
UnstringifyFact
(
ufd
.
stringifiedFact
)
if
err
!=
nil
{
return
unconfirmedFacts
,
errors
.
WithMessage
(
err
,
malformedFactErr
)
return
unconfirmedFacts
,
errors
.
WithMessagef
(
err
,
malformedFactErr
,
string
(
data
))
}
unconfirmedFacts
[
ufd
.
confirmationId
]
=
f
...
...
This diff is collapsed.
Click to expand it.
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