mirror of
https://github.com/DeBrosOfficial/orama.git
synced 2026-03-17 05:13:01 +00:00
chore: update version to 0.112.6 and add Secure field to yamlTURNServer struct
This commit is contained in:
parent
7227e5ceb9
commit
1882876922
2
Makefile
2
Makefile
@ -63,7 +63,7 @@ test-e2e-quick:
|
||||
|
||||
.PHONY: build clean test deps tidy fmt vet lint install-hooks upload-devnet upload-testnet redeploy-devnet redeploy-testnet release health
|
||||
|
||||
VERSION := 0.112.5
|
||||
VERSION := 0.112.6
|
||||
COMMIT ?= $(shell git rev-parse --short HEAD 2>/dev/null || echo unknown)
|
||||
DATE ?= $(shell date -u +%Y-%m-%dT%H:%M:%SZ)
|
||||
LDFLAGS := -X 'main.version=$(VERSION)' -X 'main.commit=$(COMMIT)' -X 'main.date=$(DATE)'
|
||||
|
||||
@ -48,6 +48,7 @@ func parseSFUConfig(logger *logging.ColoredLogger) *sfu.Config {
|
||||
type yamlTURNServer struct {
|
||||
Host string `yaml:"host"`
|
||||
Port int `yaml:"port"`
|
||||
Secure bool `yaml:"secure"`
|
||||
}
|
||||
|
||||
type yamlCfg struct {
|
||||
@ -81,6 +82,7 @@ func parseSFUConfig(logger *logging.ColoredLogger) *sfu.Config {
|
||||
turnServers = append(turnServers, sfu.TURNServerConfig{
|
||||
Host: ts.Host,
|
||||
Port: ts.Port,
|
||||
Secure: ts.Secure,
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user