mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
exit Agent by return 0
This commit is contained in:
parent
65442b467d
commit
da5eb470ca
1 changed files with 3 additions and 1 deletions
|
|
@ -15,7 +15,7 @@ public class Program
|
|||
private static ServiceProvider serviceProvider;
|
||||
private static IConfigurationRoot configurationRoot;
|
||||
|
||||
public static void Main(string[] args)
|
||||
public static int Main(string[] args)
|
||||
{
|
||||
InstantiateConfigurationRoot();
|
||||
InstantiateTelemetryClient();
|
||||
|
|
@ -24,6 +24,8 @@ public static void Main(string[] args)
|
|||
//TODO: capture batchSize from args
|
||||
const int batchSize = 1;
|
||||
CaptureSnapshots(batchSize);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
private static void InstantiateConfigurationRoot()
|
||||
|
|
|
|||
Loading…
Reference in a new issue