Fix up some small but critical problems in rb-gateway.
Review Request #9750 — Created March 6, 2018 and submitted — Latest diff uploaded
There were two problems preventing building and unit tests from
succeeding:
- The invocation of
logRequest
in server.go had a typo, using
curly-braces instead of parentheses. - The test for getting the config port used a
%s
in a format
string where it should have used a%d
(this is an issue where the
runtime got more strict).
- Was able to build rb-gateway.
- Ran
go test
.