puppetlabs / puppetlabs-puppet_agent

Module for managing Puppet-Agent
Apache License 2.0
41 stars 193 forks source link

Fix strftime() deprecation warning #712

Closed smortex closed 3 months ago

smortex commented 3 months ago

When running on Puppet 8, a warning is produced:

The argument signature (String format, [String timezone]) is deprecated for #strftime. See #strftime documentation and Timespan type for more info

Pass a timestamp as the first parameter to use a non-deprecated signature of the function (Timespan $time_object, String $format).

mhashizume commented 3 months ago

Thanks @smortex !