Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed UUID package #285

Merged
merged 3 commits into from
Sep 9, 2020
Merged

Conversation

gauravgahlot
Copy link
Contributor

@gauravgahlot gauravgahlot commented Sep 9, 2020

Description

The PR changes UUID package from github.com/satori/go.uuid to to github.com/google/uuid.

Why is this needed

The package github.com/satori/go.uuid is not actively maintained anymore and will eventually be marked as deprecated.
References:

How Has This Been Tested?

CI and Tests pass.

How are existing users impacted? What migration steps/scripts do we need?

No impact.

Checklist:

I have:

  • updated the documentation and/or roadmap (if required)
  • added unit or e2e tests
  • provided instructions on how to upgrade

Signed-off-by: Gaurav Gahlot <[email protected]>
Signed-off-by: Gaurav Gahlot <[email protected]>
@codecov
Copy link

codecov bot commented Sep 9, 2020

Codecov Report

Merging #285 into master will decrease coverage by 0.03%.
The diff coverage is 16.66%.

Impacted file tree graph

@@            Coverage Diff             @@
##           master     #285      +/-   ##
==========================================
- Coverage   20.61%   20.58%   -0.04%     
==========================================
  Files          15       15              
  Lines        1363     1365       +2     
==========================================
  Hits          281      281              
- Misses       1068     1070       +2     
  Partials       14       14              
Impacted Files Coverage Δ
grpc-server/workflow.go 0.00% <0.00%> (ø)
grpc-server/template.go 19.64% <50.00%> (ø)

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 1aef424...9ff1739. Read the comment docs.

@gauravgahlot gauravgahlot added the ready-to-merge Signal to Mergify to merge the PR. label Sep 9, 2020
@@ -33,7 +33,7 @@ func (s *server) CreateWorkflow(ctx context.Context, in *workflow.CreateRequest)
msg := ""
labels["op"] = "createworkflow"
msg = "creating a new workflow"
id := uuid.NewV4()
id, _ := uuid.NewUUID()
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Err has to be checked here

Signed-off-by: Gaurav Gahlot <[email protected]>
@mergify mergify bot merged commit 547e8ea into tinkerbell:master Sep 9, 2020
@gauravgahlot gauravgahlot deleted the uuid-package branch September 9, 2020 11:37
@mmlb mmlb removed the ready-to-merge Signal to Mergify to merge the PR. label Jan 25, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants