This repository has been archived by the owner on Nov 5, 2021. It is now read-only.
Fixed pointer bug in ListProbes() method in serviceimpl.go and the corresponding test. #459
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There is a pointer issue in the
ListProbes()
RPC. TheListProbesResponse
object contains a list of structs, each containing a string and ProbeInfo object. If there are multiple probes added, the strings will all be the same as the last item added to this list.Example:
3 probes (probe0, probe1, probe2) are added.
ListProbes()
is called.Desired Response: ["probe0" , "probe1" , "probe2" ]
Received Response: ["probe2" , "probe2" , "probe2" ]
There is also a minor bug in the serviceimpl_test.go file.
cloudprober/prober/serviceimpl_test.go
Lines 185 to 187 in 4cbdccb
There is a missing negation (!) in the if statement above, it should be:
Without the negation, this will only throw an error when these are the same, rather than different.
This pull request addresses both of these issues.