Skip to content

Commit

Permalink
etlLibraryPath variable is pointless, it should be passed as paramete…
Browse files Browse the repository at this point in the history
…r instead of a hardcoded ""
  • Loading branch information
navirter committed Sep 27, 2024
1 parent 8deac82 commit 06125dd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions sources/Tests/RunLocal/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ static void Main(string[] args)

Console.WriteLine($"{Directory.GetCurrentDirectory()}");

var etlLibraryPath = "";
Process(EtlLibrary.CreateVendorInstance(etlLibraryPath, args[0]), int.Parse(args[1]), int.Parse(args[2]), args[3], bool.Parse(args[4]), etlLibraryPath);
Process(EtlLibrary.CreateVendorInstance(args[5], args[0]), int.Parse(args[1]), int.Parse(args[2]), args[3], bool.Parse(args[4]), args[5]);

//int[] slicesNum = [24, 40, 48, 96, 192];

Expand Down

0 comments on commit 06125dd

Please sign in to comment.