Dan Grünzig

Results 10 comments of Dan Grünzig

> Additionally, it would be good if unattended-upgrades (which will only install security updates) was enabled. Would also suggest this as top prio. Because now you have the scenario that...

Hetzner said its a known error :)

> Has one tried, when csi-driver is unable to attach the volume, to manually attach the volume via the Hetzner Console Yes, tried, works

@choffmeister only via console.hetzner.cloud, had to detach all volumes from vm, restart server and attach them manually again.

Or try killing/deleting the csi-node-pods, wait till they start again, kill/delete the pod which has the mount error

@sxsws The better workaround would be probably ```php ImageField::new('filePath') ... ->setFormTypeOption('upload_new', function (UploadedFile $file, string $uploadDir, string $fileName) { if (($extraDirs = dirname($fileName)) !== '.') { $uploadDir .= $extraDirs; if...

The discriminator field will be correctly serialized if class is root class. If the class is a property of another class, discriminator field is not serialized. Any suggestion?

found out that serialization of discriminator field stops, when abstract base class is extended from a higher class itself ``` php class base {} abstract class user extends base {}...

i made a patch: https://github.com/scasei/serializer/commit/bd09a4d41a24b312a49e75d8e302dcce06df90c5 and a pull request: https://github.com/schmittjoh/serializer/pull/309

Here is a propsal: https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/pull/5097 --- FYI: Mentioned PR is for variables, not for properties.