I’m having this issue, as well. But I used nano to remove the quotes from the specified line in /usr/lib/sysctl.d/50-default.conf, and it doesn’t seem to have fixed the issue.
I had/have the same issue. In addition to removing quotation marks in 50-default.conf I updated initramfs image and errors disappeared from logs.
In a nutshell, in addition to solution posted by SJLPHI I ran:
Users may choose to copy file /usr/lib/sysctl.d/50-default.conf to /etc/sysctl.d/50-default.conf and edit the latter. As a bonus systemd-delta lists the changes made:
erlangen:~ # systemd-delta --type overridden
[OVERRIDDEN] /etc/sysctl.d/50-default.conf → /usr/lib/sysctl.d/50-default.conf
--- /usr/lib/sysctl.d/50-default.conf 2020-09-09 08:49:33.000000000 +0200
+++ /etc/sysctl.d/50-default.conf 2020-09-17 09:49:55.651527076 +0200
@@ -29,7 +29,7 @@
# bits (bsc#1174504).
# this only allows users to handle ICMP ECHO REQUESTs and REPLYs, nothing
# else.
-net.ipv4.ping_group_range = "0 2147483647"
+net.ipv4.ping_group_range = 0 2147483647
# increase the number of possible inotify(7) watches
fs.inotify.max_user_watches = 65536
...
3 overridden configuration files found.
erlangen:~ #
The workaround won’t change how the system behave, only prevent a systemd service to print an error. Ping continues available for all users. I’d suggest you wait until a snapshot fixes it.