mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-06 17:18:35 +08:00
15 lines
299 B
Go
15 lines
299 B
Go
//go:build test
|
|
// +build test
|
|
|
|
package streamingutil
|
|
|
|
import "os"
|
|
|
|
// UnsetStreamingServiceEnabled unsets the env that indicates whether the streaming service is enabled.
|
|
func UnsetStreamingServiceEnabled() {
|
|
err := os.Setenv(MilvusStreamingServiceEnabled, "0")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|