fix: bad test cleanup causing failures

This commit is contained in:
Connor Peet 2020-06-18 08:19:45 -07:00
Родитель 27cff616f2
Коммит 7b8e971ecd
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: CF8FD2EA0DBC61BD
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -40,6 +40,9 @@ export class Proxy {
* activate creates the proxy server.
*/
public activate(): Promise<void> {
this.enabledDataFlows.add(TrafficDirection.FromEtcd);
this.enabledDataFlows.add(TrafficDirection.ToEtcd);
return new Promise<void>((resolve, reject) => {
this.server = tls.createServer(
{ cert: tlsCert, key: tlsKey, ALPNProtocols: ['h2'] },