Skip to content

Commit

Permalink
Merge pull request #118 from sanjiva/master
Browse files Browse the repository at this point in the history
Fixes
  • Loading branch information
sanjiva committed Nov 16, 2019
2 parents a68ac45 + 7ef494d commit 6602ed3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion distributor/src/distributor/main.bal
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ public function main() returns error? {
// enabled: true,
// maxCount: 5
//},
timeoutInMillis: 5*60000 // Check
//timeoutInMillis: 5*60000 // Check
timeoutInMillis: 5000 // Check
}
});

Expand Down
2 changes: 1 addition & 1 deletion distributor/src/distributor/save.bal
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const string CREATE_RESULTS_TABLE = "CREATE TABLE IF NOT EXISTS results (" +
" election VARCHAR(50) NOT NULL," +
" code VARCHAR(100) NOT NULL," +
" type VARCHAR(100) NOT NULL," +
" jsonResult VARCHAR(60000) NOT NULL," +
" jsonResult LONGTEXT NOT NULL," +
" imageMediaType VARCHAR(50) DEFAULT NULL," +
" imageData MEDIUMBLOB DEFAULT NULL," +
" PRIMARY KEY (sequenceNo))";
Expand Down

0 comments on commit 6602ed3

Please sign in to comment.