Skip to content

Commit

Permalink
Merge pull request #2 from T-Systems-MMS/bugfix/misc-fixes
Browse files Browse the repository at this point in the history
Misc fixes
  • Loading branch information
jandd authored Jul 27, 2022
2 parents 8c9b0e8 + 7f7ee51 commit 91333be
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions internal/splitrt/excludes.go
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ func (e *Excludes) cleanup() {
}
}

// start starts pertiodic cleanup of the split excludes
// start starts periodic cleanup of the split excludes
func (e *Excludes) start() {
defer close(e.closed)

Expand All @@ -158,13 +158,13 @@ func (e *Excludes) start() {
}
}

// Start starts pertiodic cleanup of the split excludes
// Start starts periodic cleanup of the split excludes
func (e *Excludes) Start() {
log.Debug("SplitRouting starting periodic cleanup of excludes")
go e.start()
}

// Stop stops pertiodic cleanup of the split excludes
// Stop stops periodic cleanup of the split excludes
func (e *Excludes) Stop() {
close(e.done)
<-e.closed
Expand Down
2 changes: 1 addition & 1 deletion scripts/dnsproxy.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash

go run ./cmd/dnsproxy \
go run ./tools/dnsproxy \
-remotes ".:127.0.0.53:53,google.com.:127.0.0.53:53" \
-watches "google.com.,google.de."
2 changes: 1 addition & 1 deletion scripts/ocrunner.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

go build -race ./cmd/ocrunner
go build -race ./tools/ocrunner
sudo ./ocrunner \
-authenticate \
-connect \
Expand Down

0 comments on commit 91333be

Please sign in to comment.