Skip to content

Commit

Permalink
Merge pull request #2 from pawel-madurski/features/init
Browse files Browse the repository at this point in the history
Features/init
  • Loading branch information
pawel-madurski authored Sep 18, 2023
2 parents 5dd64f9 + e6df9c4 commit 16c26b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion samples/Sample.Opensearch.Core/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
services.AddControllersWithViews();
services.AddMiniProfiler(options => options.ExcludeOpenSearchAssemblies()).AddOpenSearch();
services.AddSingleton<IOpenSearchClient>(_ => {
var node = new Uri("http://localhost:9200");
var node = new Uri("http://opensearch.local:9200");
var connectionSettings = new ConnectionSettings(node).DefaultIndex("opensearch-sample");
return new OpenSearchClient(connectionSettings);
});
Expand Down
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<VersionPrefix>1.0.0</VersionPrefix>
<VersionPrefix>1.0.1</VersionPrefix>

<Description>OpenSearch.Net and OpenSearch.Client for logging to MiniProfiler.</Description>
<OutputType>Library</OutputType>
Expand Down

0 comments on commit 16c26b3

Please sign in to comment.