We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f96058e commit 61933e0Copy full SHA for 61933e0
sherlog-cli/Program.cs
@@ -149,6 +149,12 @@ static async Task<int> Main(string[] args)
149
return -1;
150
}
151
152
+ if (recipients.Count == 0)
153
+ {
154
+ Console.WriteLine("No recipients found for tenant. Please set up in NetBox first.");
155
+ return -1;
156
+ }
157
+
158
Console.Write("\n");
159
var selectedRecipients = Prompt.MultiSelect("Select stakeholders to be notified on this log entry?", recipients, pageSize: 3).ToList();
160
0 commit comments