-
Notifications
You must be signed in to change notification settings - Fork 825
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
REST SDK Conformance Tests #1537
REST SDK Conformance Tests #1537
Conversation
cmd/sdk-server/main.go
Outdated
logger.WithError(err).Fatal("Could not register grpc-gateway") | ||
logger.WithError(err).Fatal("Could not register sdk grpc-gateway") | ||
} | ||
if err = sdkalpha.RegisterSDKHandler(ctx, mux, conn); err != nil { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Couldn't add the beta SDK in here, as with no services, no RegisterSDKHandler
function gets generated for the beta SDK.
Build Succeeded 👏 Build Id: 351d3fa0-e13d-4c5a-98f3-c9ac2a401416 The following development artifacts have been built, and will exist for the next 30 days:
A preview of the website (the last 30 builds are retained): To install this version:
|
@@ -105,6 +112,56 @@ func main() { | |||
log.Fatalf("Could not SetAnnotation: %v\n", err) | |||
} | |||
|
|||
// easy feature flag check |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: needs formatting.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well spotted!
cmd/sdk-server/main.go
Outdated
logger.WithError(err).Fatal("Could not register grpc-gateway") | ||
logger.WithError(err).Fatal("Could not register sdk grpc-gateway") | ||
} | ||
if err = sdkalpha.RegisterSDKHandler(ctx, mux, conn); err != nil { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: if err := ...; err != nil
cda524c
to
eef2bd7
Compare
Conformance tests for the REST API. Work on googleforgames#1507
eef2bd7
to
d005674
Compare
Build Failed 😱 Build Id: 401ed8ab-efba-49e7-8bed-722900bbaec9 To get permission to view the Cloud Build view, join the agones-discuss Google Group. |
Build Succeeded 👏 Build Id: e72b84e5-959f-4b9b-8fb6-8f188e98722f The following development artifacts have been built, and will exist for the next 30 days:
A preview of the website (the last 30 builds are retained): To install this version:
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: markmandel, roberthbailey The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Conformance tests for the REST API. Work on googleforgames#1507
What type of PR is this?
/kind feature
What this PR does / Why we need it:
Conformance tests for the REST API.
Which issue(s) this PR fixes:
Work on #1507
Special notes for your reviewer:
None.