diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-04-22 07:01:05 +0300 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-04-22 07:01:05 +0300 |
| commit | 405f1ac07d78468c3e1a0ef1c0dc8956635c8677 (patch) | |
| tree | e7103eb16188663d28f0926b94eaabd87fb2473b /Software/Visual_Studio/Web | |
| parent | 499e0a03bb41e2330a47ccca83e6e6dfe7c5a634 (diff) | |
| download | Tango-405f1ac07d78468c3e1a0ef1c0dc8956635c8677.tar.gz Tango-405f1ac07d78468c3e1a0ef1c0dc8956635c8677.zip | |
FSE work + fixed issue with personal access token on MS and PPC.
Diffstat (limited to 'Software/Visual_Studio/Web')
3 files changed, 6 insertions, 6 deletions
diff --git a/Software/Visual_Studio/Web/Tango.MachineService/Controllers/FSEController.cs b/Software/Visual_Studio/Web/Tango.MachineService/Controllers/FSEController.cs index 27d93f467..bb3ef588f 100644 --- a/Software/Visual_Studio/Web/Tango.MachineService/Controllers/FSEController.cs +++ b/Software/Visual_Studio/Web/Tango.MachineService/Controllers/FSEController.cs @@ -117,8 +117,8 @@ namespace Tango.MachineService.Controllers { return new BugReportingInfoResponse() { - CollectionUrl = MachineServiceConfig.FSE_TFS_COLLECTION_URL, - PersonalToken = MachineServiceConfig.FSE_TFS_PERSONAL_TOKEN, + CollectionUrl = MachineServiceConfig.TFS_COLLECTION_URL, + PersonalToken = MachineServiceConfig.TFS_PERSONAL_TOKEN, UserEmail = MachineServiceConfig.FSE_TFS_USER_EMAIL }; } diff --git a/Software/Visual_Studio/Web/Tango.MachineService/MachineServiceConfig.cs b/Software/Visual_Studio/Web/Tango.MachineService/MachineServiceConfig.cs index f781dbb89..431d64200 100644 --- a/Software/Visual_Studio/Web/Tango.MachineService/MachineServiceConfig.cs +++ b/Software/Visual_Studio/Web/Tango.MachineService/MachineServiceConfig.cs @@ -18,8 +18,8 @@ namespace Tango.MachineService public static bool USE_DB_ACCESS_TOKENS => bool.Parse(ConfigurationManager.AppSettings[nameof(USE_DB_ACCESS_TOKENS)].ToString()); public static String CDN_ENDPOINT => ConfigurationManager.AppSettings[nameof(CDN_ENDPOINT)].ToString(); - public static String FSE_TFS_COLLECTION_URL => ConfigurationManager.AppSettings[nameof(FSE_TFS_COLLECTION_URL)].ToString(); - public static String FSE_TFS_PERSONAL_TOKEN => ConfigurationManager.AppSettings[nameof(FSE_TFS_PERSONAL_TOKEN)].ToString(); + public static String TFS_COLLECTION_URL => ConfigurationManager.AppSettings[nameof(TFS_COLLECTION_URL)].ToString(); + public static String TFS_PERSONAL_TOKEN => ConfigurationManager.AppSettings[nameof(TFS_PERSONAL_TOKEN)].ToString(); public static String FSE_TFS_USER_EMAIL => ConfigurationManager.AppSettings[nameof(FSE_TFS_USER_EMAIL)].ToString(); } }
\ No newline at end of file diff --git a/Software/Visual_Studio/Web/Tango.MachineService/Web.config b/Software/Visual_Studio/Web/Tango.MachineService/Web.config index 2c6408e50..291145d36 100644 --- a/Software/Visual_Studio/Web/Tango.MachineService/Web.config +++ b/Software/Visual_Studio/Web/Tango.MachineService/Web.config @@ -32,8 +32,8 @@ <add key="USE_DB_ACCESS_TOKENS" value="false" /> <add key="CDN_ENDPOINT" value="https://tango.azureedge.net" /> - <add key="FSE_TFS_COLLECTION_URL" value="https://twinetfs.visualstudio.com" /> - <add key="FSE_TFS_PERSONAL_TOKEN" value="szzfokrceo4rhd4eqi5qpmxn3pa5iwl3q7tlqd36l2m7smz2ynoa" /> + <add key="TFS_COLLECTION_URL" value="https://twinetfs.visualstudio.com" /> + <add key="TFS_PERSONAL_TOKEN" value="pyulwgs7m3v7pizz3oxusypdkdfw43txggo5mjwu2ouyv2qwprhq" /> <add key="FSE_TFS_USER_EMAIL" value="fse@twine-s.com" /> </appSettings> <!-- |
