Naotoshi Seo

Results 74 comments of Naotoshi Seo

nobu says > What about --help=dump (--help=feature and so on)? ってことで --help=dump に変わりました。 ``` $ ./ruby --help Usage: ./ruby [switches] [--] [programfile] [arguments] ... --dump=target[,....] try --help=dump to show help...

https://github.com/sonots/ruby/commits/require_unreadable todo: need tests

I am also suffering with `_env`. I want to configure `_env` globally. My scenario is like: 1. Set `_export: docker:` globally so that I can run all tasks in a...

Thanks. FYI: It looked all variables are passed as a string (even 1 or false) at _export.

> Instead you may want to ignore and not register schedule definitions on server side. I feel that it's different from the original --disable-scheduler option. What do you think? The...

Thank you. I understood that —disable-scheduler is still useful. > Rather will it make users confusing, it won't? Also, I agree that having both —ignore-schedules and —disable-scheduler make users confusing....

Is it possible to run a workflow on digdag webui if a workflow is pushed with "--draft" option? If it is possible, the option fits to my purpose, building a...

My current workaround is to do as: ``` ids=$(digdag schedules | grep id | awk -F: '{print $2}') echo "${ids}" | xargs -I{} digdag reschedule {} --skip-to "$(date '+%Y-%m-%d %H:%M:%S...

Maybe, the design will be: workflowA.dig ``` _export: queue: A ``` workflowB.dig ``` _export: queue: B ``` digdag server (agent) dequeues only from the specified queue: ``` digdag server --queue...