minor fixes

This commit is contained in:
Csaba Sarkadi 2024-11-21 18:45:50 +01:00
parent 43098526d2
commit fcad6b410f
2 changed files with 5 additions and 1 deletions

View file

@ -245,7 +245,7 @@ func (s *EmbeddedDERPServerScenario) CreateHeadscaleEnv(
err = s.CreateTailscaleIsolatedNodesInUser(
hash,
userName,
"head",
tsic.VersionHead,
clientCount.WebsocketDERP,
tsic.WithWebsocketDERP(true),
)

View file

@ -194,6 +194,10 @@ func WithNetfilter(state string) Option {
// Attempts to use it with any other version is a bug in the calling code.
func WithBuildTag(tag string) Option {
return func(tsic *TailscaleInContainer) {
if tsic.version != VersionHead {
panic(errInvalidClientConfig)
}
tsic.buildConfig.tags = append(
tsic.buildConfig.tags, tag,
)