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)
636
636
string supportPath = supportDir . FullName . Replace ( "\\ " , "\\ \\ " ) ;
637
637
string configPath = configDir . FullName . Replace ( "\\ " , "\\ \\ " ) ; ;
638
638
string resourcePath = resourcesDir . FullName . Replace ( "\\ " , "\\ \\ " ) ; ;
639
- string baseConfig = File . ReadAllText ( configFile ) . Replace ( "\\ " , "\\ \\ " ) ; ;
639
+ string baseConfig = File . ReadAllText ( configFile ) . Replace ( "\\ " , "\\ \\ " ) ;
640
+ string databasePath = databaseFile . Replace ( "\\ " , "\\ \\ " ) ;
640
641
string settings = $$ """
641
642
{
642
643
"PIPELINE": {
@@ -645,7 +646,7 @@ static string SetupTempRepository(InstallLocations senzingInstall)
645
646
"RESOURCEPATH": "{{ resourcePath }} "
646
647
},
647
648
"SQL": {
648
- "CONNECTION": "sqlite3://na:na@{{ databaseFile }} "
649
+ "CONNECTION": "sqlite3://na:na@{{ databasePath }} "
649
650
}
650
651
}
651
652
""" . Trim ( ) ;
You can’t perform that action at this time.
0 commit comments