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
logger.LogError("Plugin {PluginName} must have at least one URL to watch. Please add a URL to watch in the configuration file or use the --urls-to-watch option.",pluginRef.Name);
// In stdio mode, plugins don't need URLs to watch because they
165
+
// communicate through STDIO (JSON-RPC) rather than HTTP
166
+
if(urlsToWatch.Count==0&&!isStdioMode)
167
+
{
168
+
logger.LogError("Plugin {PluginName} must have at least one URL to watch. Please add a URL to watch in the configuration file or use the --urls-to-watch option.",pluginRef.Name);
0 commit comments