feat: Add TLS support for Go Feature Server#6229
feat: Add TLS support for Go Feature Server#6229franciscojavierarceo merged 10 commits intofeast-dev:masterfrom
Conversation
|
@shuchu optional nitpick - I see duplication of code in http vs https in start and serve methods |
yes, you are right. let me put those two functions into one. |
Signed-off-by: Shuchu Han <shuchu.han@gmail.com>
Signed-off-by: Shuchu Han <shuchu.han@gmail.com>
Signed-off-by: Shuchu Han <shuchu.han@gmail.com>
Signed-off-by: Shuchu Han <shuchu.han@gmail.com>
Signed-off-by: Shuchu Han <shuchu.han@gmail.com>
Signed-off-by: Shuchu Han <shuchu.han@gmail.com>
Signed-off-by: Shuchu Han <shuchu.han@gmail.com>
Signed-off-by: Shuchu Han <shuchu.han@gmail.com>
Signed-off-by: Shuchu Han <shuchu.han@gmail.com>
Signed-off-by: Shuchu Han <shuchu.han@gmail.com>
There was a problem hiding this comment.
🟡 MockServerStarter missing StartHttpsServer method required by ServerStarter interface
The ServerStarter interface at go/main.go:51 now includes StartHttpsServer, but MockServerStarter in go/main_test.go:29 does not implement this method. The comment on line 28 explicitly states it is a mock of ServerStarter interface for testing, yet it no longer satisfies that interface. Any test that attempts to use MockServerStarter as a ServerStarter will fail to compile.
(Refers to lines 29-41)
Was this helpful? React with 👍 or 👎 to provide feedback.
28a58d0
into
feast-dev:master
What this PR does / why we need it:
Add TLS support for users who have enterprise security requirement
Which issue(s) this PR fixes:
Fix #6095
Checks
git commit -s)Testing Strategy
Misc