Skip to content

Commit df3c094

Browse files
authored
Merge pull request #461 from nblumhardt/query-syntax-errors
Fix error reporting in `seqcli query`
2 parents 20cc455 + 6cef52e commit df3c094

59 files changed

Lines changed: 153 additions & 468 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/SeqCli/Apps/Hosting/AppContainer.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
using System;
1616
using System.Globalization;
1717
using System.IO;
18-
using System.Linq;
1918
using System.Text.RegularExpressions;
2019
using System.Threading.Tasks;
2120
using Newtonsoft.Json;

src/SeqCli/Apps/Hosting/AppHost.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515
using System;
1616
using System.Collections.Generic;
17-
using System.Net;
1817
using System.Threading.Tasks;
1918
using Seq.Apps;
2019
using Serilog;

src/SeqCli/Cli/Commands/ApiKey/ListCommand.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
using System;
1615
using System.Linq;
1716
using System.Threading.Tasks;
1817
using SeqCli.Api;

src/SeqCli/Cli/Commands/ApiKey/RemoveCommand.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
using System;
1615
using System.Linq;
1716
using System.Threading.Tasks;
1817
using SeqCli.Api;

src/SeqCli/Cli/Commands/App/DefineCommand.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
using System.Threading.Tasks;
1717
using SeqCli.Apps;
1818
using SeqCli.Apps.Definitions;
19-
using SeqCli.Cli.Features;
2019
using SeqCli.Util;
2120

2221
namespace SeqCli.Cli.Commands.App;

src/SeqCli/Cli/Commands/App/InstallCommand.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
using System;
16-
using System.Globalization;
1715
using System.Linq;
1816
using System.Threading.Tasks;
1917
using SeqCli.Api;

src/SeqCli/Cli/Commands/App/ListCommand.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using System;
2-
using System.Linq;
1+
using System.Linq;
32
using System.Threading.Tasks;
43
using SeqCli.Api;
54
using SeqCli.Cli.Features;

src/SeqCli/Cli/Commands/App/UninstallCommand.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
using System;
21
using System.Linq;
32
using System.Threading.Tasks;
43
using SeqCli.Api;

src/SeqCli/Cli/Commands/App/UpdateCommand.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
// limitations under the License.
1414

1515
using System;
16-
using System.Globalization;
1716
using System.Threading.Tasks;
1817
using SeqCli.Api;
1918
using SeqCli.Cli.Features;

src/SeqCli/Cli/Commands/AppInstance/CreateCommand.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
1+
using System.Collections.Generic;
32
using System.Linq;
43
using System.Threading.Tasks;
54
using Seq.Api.Model.AppInstances;

0 commit comments

Comments
 (0)