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

Gray/revert direct access #21

Draft
wants to merge 6 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 15 additions & 2 deletions CHANGELOGS.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ curl --silent "https://api.github.com/repos/daeuniverse/dae/releases" | jq -r '.

<!-- BEGIN NEW TOC ENTRY -->

- [v0.7.1 (Latest)](#v071-latest)
- [v0.8.0rc1 (Pre-release)](#v080rc1-pre-release)
- [v0.7.0 (Latest)](#v070-latest)
- [v0.7.0](#v070)
- [v0.6.0](#v060)
- [v0.5.1](#v051)
- [v0.5.0](#v050)
Expand All @@ -41,6 +42,18 @@ curl --silent "https://api.github.com/repos/daeuniverse/dae/releases" | jq -r '.
- [v0.1.0](#v010)
<!-- BEGIN NEW CHANGELOGS -->

### v0.7.1 (Latest)

> Release date: 2024/08/21

#### Bug Fixes

- fix(cmd/run.go): always check whether network online (#588)
- fix(udp_task_pool): panic: close of closed channel (#570)
- fix: unknown tls implementation (#569)

#### Bug Fixes

### v0.8.0rc1 (Pre-release)

> Release date: 2024/07/22
Expand Down Expand Up @@ -78,7 +91,7 @@ curl --silent "https://api.github.com/repos/daeuniverse/dae/releases" | jq -r '.

**Full Changelog**: https://github.com/daeuniverse/dae/compare/v0.7.0...v0.8.0rc1

### v0.7.0 (Latest)
### v0.7.0

> Release date: 2024/07/21

Expand Down
2 changes: 1 addition & 1 deletion cmd/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ func newControlPlane(log *logrus.Logger, bpf interface{}, dnsCache map[string]*c
}
// Resolve subscriptions to nodes.
resolvingfailed := false
if !conf.Global.DisableWaitingNetwork && len(conf.Subscription) > 0 {
if !conf.Global.DisableWaitingNetwork {
epo := 5 * time.Second
client := http.Client{
Transport: &http.Transport{
Expand Down
Loading
Loading