File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed
Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -60,11 +60,6 @@ func Load() (*Config, error) {
6060 if err != nil {
6161 return nil , err
6262 }
63- reportsSubmissionToken , err := appenv .Secret ("REPORTS_SUBMISSION_TOKEN" , "" )
64- if err != nil {
65- return nil , err
66- }
67-
6863 config := & Config {
6964 DBHost : appenv .String ("DB_HOST" , "localhost" ),
7065 DBPort : appenv .String ("DB_PORT" , "3306" ),
@@ -83,7 +78,7 @@ func Load() (*Config, error) {
8378 ReportsSubmissionURL : appenv .String ("REPORTS_SUBMISSION_URL" , "" ),
8479 ReportsSubmissionWireURL : appenv .String ("REPORTS_SUBMISSION_WIRE_URL" , "" ),
8580 ReportsSubmissionProtocol : appenv .String ("REPORTS_SUBMISSION_PROTOCOL" , "legacy" ),
86- ReportsSubmissionToken : reportsSubmissionToken ,
81+ ReportsSubmissionToken : appenv . String ( "REPORTS_SUBMISSION_TOKEN" , "" ) ,
8782 TagServiceURL : appenv .String ("TAG_SERVICE_URL" , "http://localhost:8083" ),
8883
8984 AMQPHost : appenv .String ("AMQP_HOST" , "localhost" ),
You can’t perform that action at this time.
0 commit comments