wivaku
wivaku
not sure how to do that.
Not clear why this is still an issue. The **workaround** @LuisPerez64 mentioned worked for me. Instead of his suggested hardcoded `udp` in `03-setup-iptables` just remove the quotes. So: - `docker...
@mortiis: does your OpenVPN config file have a `proto` line in it, and if so does it have `udp` in quotes? The scripts tries to get the protocol from the...
@mortiis That's strange. You could check what `iptables` thinks of it. Mine (after the workaround): ``` docker exec qbittorrent-openvpn iptables -S | grep udp | grep -v 53 -A INPUT...
And similar warnings for `ArrayCollection.php` ``` Return type of League\Geotools\ArrayCollection::offsetUnset($offset) should either be compatible with ArrayAccess::offsetUnset(mixed $offset): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice...
thanks for the super quick response. It gives me the following error: ``` PHP Notice: Undefined index: name in .../vendor/lesstif/php-jira-rest-client/src/Issue/IssueService.php on line 507 Notice: Undefined index: name in .../vendor/lesstif/php-jira-rest-client/src/Issue/IssueService.php on...
`findTransitonId()` (note the typo, should be `findTransitionId()`) will fail as it tries to match the (localized) transition names with the `untranslatedName`. `getTransition()` method returns all transitions but these contain only...
this is the workaround that I am using ``` if (!isset($this->statuses)) { $this->statuses = json_decode($this->issueService->exec('/status', null)); } $untranslatedName = "Done"; $translatedName = array_values( array_filter($this->statuses, function($e) use($untranslatedName) { return $e->untranslatedName ==...
Don't think this will work, `$transitionArray = $prj->getProjectTransitionsToArray($pkey[0]);` (in `findTransitonIdByUntranslatedName()`) will get all the possible transitions. These only contain **localized** names. It is `Statuses` that contain both **localized** and **untranslated**...