Skip to content

Commit

Permalink
After .NET 8 rebase, update snapshots with SourceLink tags
Browse files Browse the repository at this point in the history
  • Loading branch information
zacharycmontoya committed Oct 31, 2023
1 parent c62924d commit 5c045df
Show file tree
Hide file tree
Showing 9 changed files with 2,906 additions and 216 deletions.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ private static List<Func<object>> IndexCommands(ElasticClient elastic)
() => elastic.DeleteAlias(new DeleteAliasRequest("test_index_1", "test_index_3")),
() => elastic.DeleteAlias(new DeleteAliasRequest("test_index_1", "test_index_2")),
() => elastic.CreateIndex("test_index_4"),
#if (ELASTICSEARCH_6_1 && !DEFAULT_SAMPLES)
#if ELASTICSEARCH_6_1
() => elastic.SplitIndex("test_index_1", "test_index_4"),
#endif
() => elastic.DeleteIndex("test_index_4"),
Expand Down Expand Up @@ -219,7 +219,7 @@ private static List<Func<object>> IndexCommandsAsync(ElasticClient elastic)
() => elastic.DeleteAliasAsync(new DeleteAliasRequest("test_index_1", "test_index_3")),
() => elastic.DeleteAliasAsync(new DeleteAliasRequest("test_index_1", "test_index_2")),
() => elastic.CreateIndexAsync("test_index_4"),
#if (ELASTICSEARCH_6_1 && !DEFAULT_SAMPLES)
#if ELASTICSEARCH_6_1
() => elastic.SplitIndexAsync("test_index_1", "test_index_4"),
#endif
() => elastic.DeleteIndexAsync("test_index_4"),
Expand Down Expand Up @@ -306,7 +306,7 @@ private static List<Func<object>> JobCommands(ElasticClient elastic)
() => elastic.GetJobStats(new GetJobStatsRequest()),
() => elastic.GetModelSnapshots(new GetModelSnapshotsRequest("test_job")),
() => elastic.FlushJob(new FlushJobRequest("test_job")),
#if (ELASTICSEARCH_6_1 && !DEFAULT_SAMPLES)
#if ELASTICSEARCH_6_1
() => elastic.GetOverallBuckets(new GetOverallBucketsRequest("test_job")),
() => elastic.ForecastJob(new ForecastJobRequest("test_job")),
#endif
Expand All @@ -330,7 +330,7 @@ private static List<Func<object>> JobCommandsAsync(ElasticClient elastic)
() => elastic.GetJobStatsAsync(new GetJobStatsRequest()),
() => elastic.GetModelSnapshotsAsync(new GetModelSnapshotsRequest("test_job")),
() => elastic.FlushJobAsync(new FlushJobRequest("test_job")),
#if (ELASTICSEARCH_6_1 && !DEFAULT_SAMPLES)
#if ELASTICSEARCH_6_1
() => elastic.GetOverallBucketsAsync(new GetOverallBucketsRequest("test_job")),
() => elastic.ForecastJobAsync(new ForecastJobRequest("test_job")),
#endif
Expand Down

0 comments on commit 5c045df

Please sign in to comment.