I don't know what this is: `Time.now.strftime("%y%m%d%H%M") # rubocop:disable Style/StringLiterals` But it isn't a unix timestamp... It should be replaced by: `Time.now.to_i`
I don't know what this is:
Time.now.strftime("%y%m%d%H%M") # rubocop:disable Style/StringLiteralsBut it isn't a unix timestamp...
It should be replaced by:
Time.now.to_i