Re: [go-nuts] regarding os package & env variable setting

2019-03-05 Thread Durga Someswararao G
Hi, Thanks for your reply. Now I got the clear idea. On Tue, Mar 5, 2019 at 10:44 PM Marcin Romaszewicz wrote: > os.Setenv only changes the environment variables in your process and in > any future child processes. It's not actually possible to change the > environment of your parent process or

Re: [go-nuts] regarding os package & env variable setting

2019-03-05 Thread Marcin Romaszewicz
os.Setenv only changes the environment variables in your process and in any future child processes. It's not actually possible to change the environment of your parent process or the OS through this mechanism. -- Marcin On Tue, Mar 5, 2019 at 6:00 AM wrote: > Hi, > I am trying to enable tls 1.

[go-nuts] regarding os package & env variable setting

2019-03-05 Thread durgasomeswararao532
Hi, I am trying to enable tls 1.3 through os.setEnv() method. Is setenv method will change process level or from os level(I mean will it change in device and other running applications)? -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubs