We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba3bbe0 commit 8fea2fcCopy full SHA for 8fea2fc
npm/cmd/start.go
@@ -68,6 +68,12 @@ func newStartNPMCmd() *cobra.Command {
68
69
func start(config npmconfig.Config, flags npmconfig.Flags) error {
70
klog.Infof("loaded config: %+v", config)
71
+ if util.IsWindowsDP() {
72
+ config.Toggles.EnableV2NPM = true
73
+ klog.Infof("NPM is running on Windows Dataplane. Enabling V2 NPM")
74
+ } else {
75
+ klog.Infof("NPM is running on Linux Dataplane")
76
+ }
77
klog.Infof("starting NPM version %d with image %s", config.NPMVersion(), version)
78
79
var err error
0 commit comments