Skip to content

Commit 6e1ae64

Browse files
committed
dont install plugin with --batch, ignore 2751 reproduce tests on this branch
1 parent 30faed8 commit 6e1ae64

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Tests/Framework/ManagedElasticsearch/Tasks/InstallationTasks/InstallPlugins.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ from plugin in ElasticsearchPluginCollection.Supported
2626
foreach (var plugin in plugins)
2727
{
2828
var installParameter = !v.IsSnapshot ? plugin.Moniker : this.DownloadSnapshotIfNeeded(fileSystem, plugin, v);
29-
this.ExecuteBinary(fileSystem.PluginBinary, $"install elasticsearch plugin: {plugin.Moniker}", "install --batch", installParameter);
29+
this.ExecuteBinary(fileSystem.PluginBinary, $"install elasticsearch plugin: {plugin.Moniker}", "install", installParameter);
3030
}
3131
}
3232

src/Tests/Reproduce/GithubIssue2751.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public class GithubIssue2751: IClusterFixture<ReadOnlyCluster>
2424
* the response from /project/project/_search to 5 seconds. See this issue's accompanying PR.
2525
*/
2626

27-
[I]
27+
//[I]
2828
public async Task TimeoutOfRequestReturnsResponse()
2929
{
3030
var client = TestClient.GetClient(modifySettings: c => c.RequestTimeout(TimeSpan.FromSeconds(2)));
@@ -67,7 +67,7 @@ public async Task TimeoutOfRequestReturnsResponse()
6767
response.ApiCall.AuditTrail.Should().Contain(a=> a.Event == AuditEvent.CancellationRequested);
6868
}
6969

70-
[I]
70+
//[I]
7171
public async Task UserCancellationDoesNotCauseFailOverToNextNode()
7272
{
7373
//this tests assumes only a single node is running under 9200 and fiddler is set up to artificially delay results

0 commit comments

Comments
 (0)