Skip to content

Commit 983153b

Browse files
committed
expose per projection execution timeout config
1 parent 2d6eacd commit 983153b

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

src/js/modules/projections/controllers/ProjectionsItemConfigCtrl.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ define(['./_module'], function (app) {
4444
pendingEventsThreshold: $scope.config.pendingEventsThreshold,
4545
maxWriteBatchLength: $scope.config.maxWriteBatchLength,
4646
maxAllowedWritesInFlight: $scope.config.maxAllowedWritesInFlight,
47+
projectionExecutionTimeout: $scope.config.projectionExecutionTimeout,
4748
};
4849
projectionsService.updateConfiguration($scope.location, param)
4950
.then(function () {

src/js/modules/projections/templates/templates.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/js/modules/projections/views/projections.item.config.tpl.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,5 +73,11 @@ <h3>
7373
<input type="text" ng-model="config.maxAllowedWritesInFlight" required class="form-table" name="maxAllowedWritesInFlight" />
7474
</td>
7575
</tr>
76+
<tr>
77+
<td>Per Event Projection Processing Timeout</td>
78+
<td>
79+
<input type="text" ng-model="config.projectionExecutionTimeout" required class="form-table" name="projectionExecutionTimeout" />
80+
</td>
81+
</tr>
7682
</tbody>
7783
</table>

0 commit comments

Comments
 (0)