ChilliSniff
module not updating anymore
i have a module which is not updating anymore it seems to be stuck on version 1.5 i already have pushed several new tags and i also can see successfull deliveries on my github page but the module just does not update , i really dont want to spam the module space but if this problem gets not solved quickly i am forced to create another module which has the exact same content plus the new one...
https://deno.land/x/handyhelpers@1.5
9 replies
third party module not updating / releasing
Dear all,
I have just added a github repo , https://github.com/jonasfrey/o_file__wav, added a webhook (https://api.deno.land/webhook/gh/o_file__wav) selected content-type : application/json, selected only 'Branch or tag creation' . then i have added a tag with
git tag 0.1
and git push --tags
but the module does not appear on https://deno.land/x/o_file__wav@0.1 what could be the problem ?7 replies
deno.run not working as expected
so when i run
mysql --defaults-extra-file=./tmpcnf_from_f_execute_query.cnf -e "DROP DATABASE test_database"
i get the correct expected error message
ERROR 1008 (HY000) at line 1: Can't drop database 'test_database'; database doesn't exist
but when i try to run this with deno
i just get the mysql help output
mysql Ver 8.0.31-0ubuntu2 for Linux on x86_64 ((Ubuntu))
Copyright (c) 2000, 2022, Oracle and/or its affiliates.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Usage: mysql [OPTIONS] [database]
-?, --help Display this help and exit.
-I, --help Synonym for -?
--auto-rehash Enable automatic rehashing. One doesn't need to use
'rehash' to get table and field completion, but startup
and reconnecting may take a longer time. Disable with...
...more lines
does anyone know why?4 replies
http serve and serveTls using async iterator cannot serve multiple domains
I have two local domains to test the server, when i visit
localhost:8080
or localhost:8443
all works , but then when i want to vist my other domain i get a timeout...
anybody knows how to serve https and http for multiple domains ?1 replies
distinguis `netERR_CONNECTION_TIMED_OUT` from `netERR_CERT_AUTHORITY_INVALID`
i get
net::ERR_CERT_AUTHORITY_INVALID
because i use self signed certs on the domain localhost
now i want to check if the net::ERR_CERT_AUTHORITY_INVALID
occurs, and if so the user should receive a message, but how can i distingish form other network errors like if the server is down fetch would throw a net::ERR_CONNECTION_REFUSED
when i catch the fetch error , all i get is:
1 replies