From 2a66d16f41c271c3cea2d8314fb3fd5f57355f1a Mon Sep 17 00:00:00 2001 From: Akis Maziotis Date: Thu, 4 Jul 2024 10:12:24 +0300 Subject: [PATCH] [chore] migration of plugin-store Plugin store is gradually migrated from: - https://plugins-store.test.mattermost.com to - https://plugins.releases.mattermost.com We reflect that change here Note: Currently both CDN's are working as expected, to facilitate the mgiration. Upon succesfull migration, https://plugins-store.test.mattermost.com will be decomissioned Signed-off-by: Akis Maziotis --- commands/plugin_e2e_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/commands/plugin_e2e_test.go b/commands/plugin_e2e_test.go index 92c36751b..c5eaad320 100644 --- a/commands/plugin_e2e_test.go +++ b/commands/plugin_e2e_test.go @@ -170,9 +170,9 @@ func (s *MmctlE2ETestSuite) TestPluginInstallURLCmd() { }) const ( - jiraURL = "https://plugins-store.test.mattermost.com/release/mattermost-plugin-jira-v3.0.0.tar.gz" + jiraURL = "https://plugins.releases.mattermost.com/release/mattermost-plugin-jira-v3.0.0.tar.gz" jiraPluginID = "jira" - githubURL = "https://plugins-store.test.mattermost.com/release/mattermost-plugin-github-v2.0.0.tar.gz" + githubURL = "https://plugins.releases.mattermost.com/release/mattermost-plugin-github-v2.0.0.tar.gz" githubPluginID = "github" ) @@ -216,7 +216,7 @@ func (s *MmctlE2ETestSuite) TestPluginInstallURLCmd() { s.RunForSystemAdminAndLocal("install a nonexistent plugin", func(c client.Client) { printer.Clean() - const pluginURL = "https://plugins-store.test.mattermost.com/release/mattermost-nonexistent-plugin-v2.0.0.tar.gz" + const pluginURL = "https://plugins.releases.mattermost.com/release/mattermost-nonexistent-plugin-v2.0.0.tar.gz" var expected error expected = multierror.Append(expected, errors.New(": An error occurred while downloading the plugin.")) //nolint:revive @@ -287,7 +287,7 @@ func (s *MmctlE2ETestSuite) TestPluginDeleteCmd() { s.SetupTestHelper().InitBasic() const ( - jiraURL = "https://plugins-store.test.mattermost.com/release/mattermost-plugin-jira-v3.0.0.tar.gz" + jiraURL = "https://plugins.releases.mattermost.com/release/mattermost-plugin-jira-v3.0.0.tar.gz" jiraPluginID = "jira" dummyPluginID = "randompluginxz" // This will be used to check response when tried to delete this plugin with randomchars which was not installed/enabled already )