Bolshakov Danila
Bolshakov Danila
- [x] I would add to the quest where fluorine is required that it can be obtained in sufficient quantities from Cryolite
Still actual, v6.22.0 **UPD:** After some debugging Just add to simple check to `tryParsingDate` method of `/src/Schema/Types/Scalars/DateScalar.php` to resolve this issue. ```php if( is_object($value) && $value::class === IlluminateCarbon::class ) {...
> Can you not use ProxyProtocol (or something similar) to let traefik use the IP of the user instead of the actual IP? Not sure if that is supported but...
> I am confused, factorio uses IP bans by default? I wasn't able to find anything about that on the factorio site or in the forums. This also came as...
This functionality is very important, when will it be merged?
The error only appears when used together with laravel octane (swoole). There is no error when using php-fpm.
Add dump to constuctor of SubscriptionRegistry ```php dump('subscription registry new instance: ' . spl_object_hash($this)); ``` Got 2 instances ``` subscription registry new instance: 00000000000054960000000000000000 subscription registry new instance: 00000000000007ea0000000000000000 ```...
To fix this issue just add `SubscriptionRegistry::class` to octane config `octane.warm`. Description of this configuration section. ```php /* |-------------------------------------------------------------------------- | Warm / Flush Bindings |-------------------------------------------------------------------------- | | The bindings listed...
Based on the explanations in this article, this appears to be a solution to the problem. https://divinglaravel.com/laravel-octane-bootstrapping-the-application-and-handling-requests > Only singletons that are resolved during the application bootstrapping will persist between...
@stevenbrookes Yes, I also had to specify http/https in the endpoint. Before, it correctly recognized the endpoint without explicitly specifying it. previouse: ``` s3: s3: "s3://${LOKI_S3_BUCKET_NAME}" endpoint: "${LOKI_S3_BUCKET_HOST}:${LOKI_S3_BUCKET_PORT}" ``` current:...