Turn back -u option for connect in 0.x.x version
See original GitHub issueOn several issues (#13, #18, #8) people mention the -r option, but I can’t get it to work on 0.24:
BULL-REPL> connect --help
Missing required argument. Showing Help:
Usage: connect [options] <queue>
Connect to bull queue
Options:
--help output usage information
--prefix <prefix> Prefix to use for all queue jobs
-h, --host <host> Redis host for connection
-p, --port <port> Redis port for connection
-d, --db <db> Redis db for connection
--password <password> Redis password for connection
-c, --cert <cert> Absolute path to pem certificate if TLS used
BULL-REPL> connect --redis redis://u:p@h:6379 queue
Invalid option: 'redis'. Showing Help:
...
BULL-REPL> connect -r redis://u:p@h:6379 queue
Invalid option: 'r'. Showing Help:
...
What am I doing wrong?
Issue Analytics
- State:
- Created 3 years ago
- Comments:6 (5 by maintainers)
Top Results From Across the Web
Restore your iPhone, iPad, or iPod touch from a backup
An iPhone showing the Apps & Data screen with the first option, Restore from an; Sign in to iCloud with your Apple ID....
Read more >curl.1 the man page
The command is designed to work without user interaction. curl offers a busload of useful tricks like proxy support, user authentication, FTP upload,...
Read more >core - Apache HTTP Server Version 2.4
Users of prior releases are encouraged to add an explicit setting of connect for their AcceptFilter, as shown above. See also. Protocol. top....
Read more >Usage · sqlmapproject/sqlmap Wiki - GitHub
Get the HTTP Cookie from the browser's preferences or from the HTTP proxy screen and copy to the clipboard. Go back to your...
Read more >4.5.4 mysqldump — A Database Backup Program
With large data sizes, even if the backup step takes a reasonable time, restoring the ... To see a list of the options...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
--redis
option was removed since0.22.0
version due to implicit format, which cause questions about it. Please use explicit options--host
,--port
,--db
,--password
(maybe--cert
) for success connection.This was added back with the
-u
param in v0.24bull-repl connect -u redis://localhost:6379 myqueue
EDIT: Looks like the -u option only landed in 1.5.0