Skip to content

Commit

Permalink
feat(platform): do not provide default HTTL configuration
Browse files Browse the repository at this point in the history
Related to #4062
  • Loading branch information
nikku committed Feb 23, 2024
1 parent 81cf4e7 commit a523425
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions client/src/app/tabs/bpmn/__tests__/DiagramSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ describe('tabs/bpmn', function() {
const contents = require('../diagram.bpmn');

// then
expect(contents).to.contain('camunda:historyTimeToLive="180"');
expect(contents).not.to.contain('camunda:historyTimeToLive="180"');
});

});

});
});
2 changes: 1 addition & 1 deletion client/src/app/tabs/bpmn/diagram.bpmn
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" id="Definitions_{{ ID }}" targetNamespace="http://bpmn.io/schema/bpmn" xmlns:modeler="http://camunda.org/schema/modeler/1.0" exporter="{{ EXPORTER_NAME }}" exporterVersion="{{ EXPORTER_VERSION }}" modeler:executionPlatform="Camunda Platform" modeler:executionPlatformVersion="{{ CAMUNDA_PLATFORM_VERSION }}">
<bpmn:process id="Process_{{ ID:process }}" isExecutable="true" camunda:historyTimeToLive="180">
<bpmn:process id="Process_{{ ID:process }}" isExecutable="true">
<bpmn:startEvent id="StartEvent_1" />
</bpmn:process>
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
Expand Down

0 comments on commit a523425

Please sign in to comment.