Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit 160149d

Browse files
Dermot SmythDermot Smyth
authored andcommitted
re-ordered temporal config
1 parent 887ed9a commit 160149d

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

src/main/java/com/marklogic/appdeployer/command/CommandMapBuilder.java

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -140,18 +140,19 @@ public Map<String, List<Command>> buildCommandMap() {
140140
taskCommands.add(new DeployScheduledTasksCommand());
141141
map.put("mlTaskCommands", taskCommands);
142142

143-
// Triggers
144-
List<Command> triggerCommands = new ArrayList<Command>();
145-
triggerCommands.add(new DeployTriggersCommand());
146-
map.put("mlTriggerCommands", triggerCommands);
147-
148143
// Temporal
149144
List<Command> temporalCommands = new ArrayList<>();
150145
temporalCommands.add(new DeployTemporalAxesCommand());
151146
temporalCommands.add(new DeployTemporalCollectionsCommand())
;
152147
temporalCommands.add(new DeployTemporalCollectionsLSQTCommand())
;
153148
map.put("mlTemporalCommands", temporalCommands);
154149

150+
// Triggers
151+
List<Command> triggerCommands = new ArrayList<Command>();
152+
triggerCommands.add(new DeployTriggersCommand());
153+
map.put("mlTriggerCommands", triggerCommands);
154+
155+
155156
// SQL Views
156157
List<Command> viewCommands = new ArrayList<Command>();
157158
viewCommands.add(new DeployViewSchemasCommand());

0 commit comments

Comments
 (0)