@@ -201,7 +201,7 @@ func verifyPlatformContainerSettings(daemon *Daemon, hostConfig *containertypes.
201201 // On RS5, we allow (but don't strictly support) process isolation on Client SKUs.
202202 // Prior to RS5, we don't allow process isolation on Client SKUs.
203203 // @engine maintainers. This block should not be removed. It partially enforces licensing
204- // restrictions on Windows. Ping @jhowardmsft if there are concerns or PRs to change this.
204+ // restrictions on Windows. Ping Microsoft folks if there are concerns or PRs to change this.
205205 if ! hyperv && system .IsWindowsClient () && osv .Build < 17763 {
206206 return warnings , fmt .Errorf ("Windows client operating systems earlier than version 1809 can only run Hyper-V containers" )
207207 }
@@ -604,7 +604,7 @@ func (daemon *Daemon) setDefaultIsolation() error {
604604 osv := system .GetOSVersion ()
605605
606606 // On client SKUs, default to Hyper-V. @engine maintainers. This
607- // should not be removed. Ping @jhowardmsft is there are PRs to
607+ // should not be removed. Ping Microsoft folks is there are PRs to
608608 // to change this.
609609 if system .IsWindowsClient () {
610610 daemon .defaultIsolation = containertypes .Isolation ("hyperv" )
@@ -628,7 +628,7 @@ func (daemon *Daemon) setDefaultIsolation() error {
628628 if system .IsWindowsClient () && osv .Build < 17763 {
629629 // On RS5, we allow (but don't strictly support) process isolation on Client SKUs.
630630 // @engine maintainers. This block should not be removed. It partially enforces licensing
631- // restrictions on Windows. Ping @jhowardmsft if there are concerns or PRs to change this.
631+ // restrictions on Windows. Ping Microsoft folks if there are concerns or PRs to change this.
632632 return fmt .Errorf ("Windows client operating systems earlier than version 1809 can only run Hyper-V containers" )
633633 }
634634 daemon .defaultIsolation = containertypes .Isolation ("process" )
0 commit comments