Skip to content

Commit

Permalink
Rename unix socket
Browse files Browse the repository at this point in the history
  • Loading branch information
gartens committed Apr 9, 2024
1 parent 627b49d commit 7ead805
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public static void restoreInterfacesIfNecessary() {
Catalog.getInstance().createQueryInterface(
"Proto Interface .polypheny Listener (Unix transport)",
"Proto Interface (Unix transport)",
Map.of( "path", PolyphenyHomeDirManager.getInstance().registerNewGlobalFile( "polypheny-proto.sock" ).getAbsolutePath() )
Map.of( "path", PolyphenyHomeDirManager.getInstance().registerNewGlobalFile( "polypheny-prism.sock" ).getAbsolutePath() )
);
}
Catalog.getInstance().commit();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public static class ProtoInterface extends QueryInterface implements PropertyCha
new QueryInterfaceSettingLong( "heartbeat interval", false, true, false, 300000L )
);
public static final List<QueryInterfaceSetting> AVAILABLE_UNIX_SETTINGS = ImmutableList.of(
new QueryInterfaceSettingString( "path", false, true, false, "polypheny-proto.sock" )
new QueryInterfaceSettingString( "path", false, true, false, "polypheny-prism.sock" )
);

@Getter
Expand Down

0 comments on commit 7ead805

Please sign in to comment.