From 79adff5faad4e5ca9aa3aa890f0ce52811574063 Mon Sep 17 00:00:00 2001 From: rebuilt Date: Tue, 3 Jan 2023 16:04:15 -0800 Subject: [PATCH] Don't print sftptogo_url --- app/services/sftp/directory.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/app/services/sftp/directory.rb b/app/services/sftp/directory.rb index 83ab424b..f0cd4267 100644 --- a/app/services/sftp/directory.rb +++ b/app/services/sftp/directory.rb @@ -6,7 +6,6 @@ module Sftp class Directory def self.open(path: '/data/survey_responses/', &block) sftptogo_url = ENV['SFTPTOGO_URL'] - puts sftptogo_url uri = URI.parse(sftptogo_url) Net::SFTP.start(uri.host, uri.user, password: uri.password) do |sftp| sftp.dir.foreach(path) do |entry|