Skip to content

Commit 3ab2d0b

Browse files
Robbie1977claude
andcommitted
Fix Boolean debug spacing in CachedUploadNBLASTQueryProcessor and Neo4jToSOLRidQueryProcessor
Dockerfile sed pattern requires `Boolean debug=false;` (no spaces around =). Both processors had `Boolean debug = false;` which the sed substitution skipped, so development builds kept debug=false instead of flipping to true. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
1 parent c8f507e commit 3ab2d0b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/uk/ac/vfb/geppetto/CachedUploadNBLASTQueryProcessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
public class CachedUploadNBLASTQueryProcessor extends AQueryProcessor {
3636
private Map<String, Object> processingOutputMap = new HashMap<>();
3737

38-
private Boolean debug = false;
38+
private Boolean debug=false;
3939

4040
// Define the row class to match the structure of the data from SOLR
4141
class NBLASTRows {

src/main/java/uk/ac/vfb/geppetto/Neo4jToSOLRidQueryProcessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
public class Neo4jToSOLRidQueryProcessor extends AQueryProcessor {
2222

2323
private Map<String, Object> processingOutputMap = new HashMap<>();
24-
private Boolean debug = false;
24+
private Boolean debug=false;
2525

2626
@Override
2727
public QueryResults process(ProcessQuery query, DataSource dataSource, Variable variable, QueryResults results, GeppettoModelAccess geppettoModelAccess) throws GeppettoDataSourceException {

0 commit comments

Comments
 (0)