diff --git a/src/js/modules/projections/controllers/ProjectionsItemConfigCtrl.js b/src/js/modules/projections/controllers/ProjectionsItemConfigCtrl.js
index b16d455a..8fed2efd 100644
--- a/src/js/modules/projections/controllers/ProjectionsItemConfigCtrl.js
+++ b/src/js/modules/projections/controllers/ProjectionsItemConfigCtrl.js
@@ -44,6 +44,7 @@ define(['./_module'], function (app) {
pendingEventsThreshold: $scope.config.pendingEventsThreshold,
maxWriteBatchLength: $scope.config.maxWriteBatchLength,
maxAllowedWritesInFlight: $scope.config.maxAllowedWritesInFlight,
+ projectionExecutionTimeout: $scope.config.projectionExecutionTimeout,
};
projectionsService.updateConfiguration($scope.location, param)
.then(function () {
diff --git a/src/js/modules/projections/templates/templates.js b/src/js/modules/projections/templates/templates.js
index 8f5aace6..6975599c 100644
--- a/src/js/modules/projections/templates/templates.js
+++ b/src/js/modules/projections/templates/templates.js
@@ -6,7 +6,7 @@ try {
}
module.run(['$templateCache', function($templateCache) {
$templateCache.put('projections.item.config.tpl.html',
- 'Projection Configuration
mode: {{stats.mode}}
{{stats.stateReason}}
Projection Configuration | |
Emit Enabled | |
Track Emitted Streams | |
Checkpoint After (ms) | |
Checkpoint Handled Threshold | |
Checkpoint Unhandled Threshold (bytes) | |
Pending Events Threshold | |
Max Write Batch Length | |
Maximum Number Of Allowed Writes In Flight |
mode: {{stats.mode}}
{{stats.stateReason}}
Projection Configuration | |
Emit Enabled | |
Track Emitted Streams | |
Checkpoint After (ms) | |
Checkpoint Handled Threshold | |
Checkpoint Unhandled Threshold (bytes) | |
Pending Events Threshold | |
Max Write Batch Length | |
Maximum Number Of Allowed Writes In Flight | |
Per Event Projection Processing Timeout |