Skip to content

Commit

Permalink
fix default file name
Browse files Browse the repository at this point in the history
  • Loading branch information
keski committed Sep 24, 2024
1 parent d442591 commit 4f1ed4c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public void init( ServletConfig config ) throws ServletException {
super.init( config );

final String configurationFile = System.getProperty( "hefquin.configuration", "DefaultEngineConf.ttl" );
final String federationFile = System.getProperty( "hefquin.federation", "DefaultEngineConf.ttl" );
final String federationFile = System.getProperty( "hefquin.federation", "DefaultFedConf.ttl" );

logger.info( "--- Settings ---" );
logger.info( "hefquin.configuration: " + configurationFile );
Expand Down

0 comments on commit 4f1ed4c

Please sign in to comment.