summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2019-01-17 13:28:21 +0100
committerJules Laplace <julescarbon@gmail.com>2019-01-17 13:28:21 +0100
commitcb06add10536674dc5473780f07d63167b73e54b (patch)
tree64fbe659c9b4882637b2eb899db5eb934bf2d9d8 /app
parent9108b2819d107c6266e9653dcf6d7bb5ff25d322 (diff)
uprez task stuff
Diffstat (limited to 'app')
-rw-r--r--app/client/modules/pix2pixhd/pix2pixhd.actions.js2
-rw-r--r--app/relay/modules/pix2pixhd.js1
2 files changed, 2 insertions, 1 deletions
diff --git a/app/client/modules/pix2pixhd/pix2pixhd.actions.js b/app/client/modules/pix2pixhd/pix2pixhd.actions.js
index 5a00741..5ee6759 100644
--- a/app/client/modules/pix2pixhd/pix2pixhd.actions.js
+++ b/app/client/modules/pix2pixhd/pix2pixhd.actions.js
@@ -156,7 +156,7 @@ export const load_results = (id) => (dispatch) => {
const module = pix2pixhdModule.name
util.allProgress([
actions.folder.index({ name: 'results' }),
- actions.file.index({ module, generated: 1 }),
+ actions.file.index({ module, generated: 1, limit: 250 }),
actions.socket.list_directory({ module, dir: 'renders' }),
actions.socket.list_sequences({ module, dir: 'results' }),
], (percent, i, n) => {
diff --git a/app/relay/modules/pix2pixhd.js b/app/relay/modules/pix2pixhd.js
index 80bf38c..9569454 100644
--- a/app/relay/modules/pix2pixhd.js
+++ b/app/relay/modules/pix2pixhd.js
@@ -267,6 +267,7 @@ const uprez = {
}
return [
'--folder', folder,
+ '--dataset', task.dataset,
'--out_fn', task.dataset + "_" + Date.now(),
]
}