Skip to content

Commit

Permalink
update java and dotnet example
Browse files Browse the repository at this point in the history
  • Loading branch information
semihbkgr committed May 9, 2024
1 parent 3ee8a04 commit 58e5c2a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion dotnet/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ static async Task Main(string[] args)
.With((configuration, options) =>
{
options.LoggerFactory.Creator = () => LoggerFactory.Create(loggingBuilder => loggingBuilder.AddConfiguration(configuration.GetSection("logging")).AddConsole());
options.Networking.Addresses.Add("52.255.228.60");
options.Networking.Addresses.Add("<EXTERNAL-IP>");
options.Networking.UsePublicAddresses = true;
})
.Build();
Expand Down
1 change: 1 addition & 0 deletions java/src/main/java/com/hazelcast/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import com.hazelcast.client.HazelcastClient;
import com.hazelcast.client.config.ClientConfig;
import com.hazelcast.client.properties.ClientProperty;
import com.hazelcast.core.HazelcastInstance;
import com.hazelcast.map.IMap;

Expand Down

0 comments on commit 58e5c2a

Please sign in to comment.