You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
varmessage=$"ServiceControl version {Constants.CurrentVersion} requires:\n• RabbitMQ broker version 3.10.0 or higher\n• The stream_queue and quorum_queue feature flags must be enabled\n• The management plugin must be enabled\n\nPlease confirm your broker meets the minimum requirements before {beforeWhat}.";
25
25
varquestion="Do you want to proceed?";
26
26
varyes="Yes, my RabbitMQ broker meets the minimum requirements";
message.AppendLine($"ServiceControl version {Constants.CurrentVersion} requires:");
31
+
message.AppendLine("• RabbitMQ broker version 3.10.0 or higher");
32
+
message.AppendLine("• The stream_queue and quorum_queue feature flags must be enabled");
33
+
message.AppendLine($"• The management plugin API must be enabled and accessible. This might require custom settings to be added to the connection string before {beforeWhat}. See the ServiceControl documentation for details.");
34
+
message.AppendLine();
35
+
message.AppendLine($"Please confirm your broker meets the minimum requirements before {beforeWhat}.");
varterminateMsg=$"ServiceControl version {Constants.CurrentVersion} requires that the management plugin be enabled and the management API be accessible. Use -Acknowledgements {AcknowledgementValues.RabbitMQManagementApi} if you are sure your broker meets these requirements.";
84
+
varterminateMsg=$"ServiceControl version {Constants.CurrentVersion} requires that the management plugin API must be enabled and accessible. This might require custom settings to be added to the connection string. See the ServiceControl documentation for details. Use -Acknowledgements {AcknowledgementValues.RabbitMQManagementApi} if you are sure your broker meets these requirements.";
0 commit comments