File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
csharp/runner/SnippetRunner Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -636,7 +636,8 @@ static string SetupTempRepository(InstallLocations senzingInstall)
636636 string supportPath = supportDir . FullName . Replace ( "\\ " , "\\ \\ " ) ;
637637 string configPath = configDir . FullName . Replace ( "\\ " , "\\ \\ " ) ; ;
638638 string resourcePath = resourcesDir . FullName . Replace ( "\\ " , "\\ \\ " ) ; ;
639- string baseConfig = File . ReadAllText ( configFile ) . Replace ( "\\ " , "\\ \\ " ) ; ;
639+ string baseConfig = File . ReadAllText ( configFile ) . Replace ( "\\ " , "\\ \\ " ) ;
640+ string databasePath = databaseFile . Replace ( "\\ " , "\\ \\ " ) ;
640641 string settings = $$ """
641642 {
642643 "PIPELINE": {
@@ -645,7 +646,7 @@ static string SetupTempRepository(InstallLocations senzingInstall)
645646 "RESOURCEPATH": "{{ resourcePath }} "
646647 },
647648 "SQL": {
648- "CONNECTION": "sqlite3://na:na@{{ databaseFile }} "
649+ "CONNECTION": "sqlite3://na:na@{{ databasePath }} "
649650 }
650651 }
651652 """ . Trim ( ) ;
You can’t perform that action at this time.
0 commit comments