Skip to content

Commit

Permalink
Merge pull request #493 from bcgov/yj
Browse files Browse the repository at this point in the history
chore: max file size
  • Loading branch information
ychung-mot authored Jul 25, 2024
2 parents c5d4f47 + 1824850 commit d3dc7a9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion helm/main/values-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ global:
'SM_LOGOFF_URL': 'https://logontest7.gov.bc.ca/clp-cgi/logoff.cgi/'
'CHES_TOKEN_URL': 'https://dev.loginproxy.gov.bc.ca/auth/realms/comsvcauth/protocol/openid-connect/token'
'CHES_URL': 'https://ches-dev.api.gov.bc.ca'
'RENTAL_LISTING_REPORT_MAX_SIZE': '10'
'RENTAL_LISTING_REPORT_MAX_SIZE': '30'
'BCEID_URL': 'https://gws1.development.bceid.ca/webservices/client/v10/bceidservice.asmx'
'BCEID_CACHE_LIFESPAN': '600'
'GEOCODER_URL': 'https://geocodertst.api.gov.bc.ca'
Expand Down
2 changes: 1 addition & 1 deletion helm/main/values-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ global:
'SM_LOGOFF_URL': 'https://logon7.gov.bc.ca/clp-cgi/logoff.cgi/'
'CHES_TOKEN_URL': 'https://loginproxy.gov.bc.ca/auth/realms/comsvcauth/protocol/openid-connect/token'
'CHES_URL': 'https://ches.api.gov.bc.ca'
'RENTAL_LISTING_REPORT_MAX_SIZE': '10'
'RENTAL_LISTING_REPORT_MAX_SIZE': '30'
'BCEID_URL': 'https://gws1.bceid.ca/webservices/client/v10/bceidservice.asmx'
'BCEID_CACHE_LIFESPAN': '600'
'GEOCODER_URL': 'https://geocoder.api.gov.bc.ca'
Expand Down
2 changes: 1 addition & 1 deletion helm/main/values-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ global:
'SM_LOGOFF_URL': 'https://logontest7.gov.bc.ca/clp-cgi/logoff.cgi/'
'CHES_TOKEN_URL': 'https://dev.loginproxy.gov.bc.ca/auth/realms/comsvcauth/protocol/openid-connect/token'
'CHES_URL': 'https://ches-dev.api.gov.bc.ca'
'RENTAL_LISTING_REPORT_MAX_SIZE': '10'
'RENTAL_LISTING_REPORT_MAX_SIZE': '30'
'BCEID_URL': 'https://gws1.development.bceid.ca/webservices/client/v10/bceidservice.asmx'
'BCEID_CACHE_LIFESPAN': '600'
'GEOCODER_URL': 'https://geocodertst.api.gov.bc.ca'
Expand Down
2 changes: 1 addition & 1 deletion helm/main/values-uat.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ global:
'SM_LOGOFF_URL': 'https://logontest7.gov.bc.ca/clp-cgi/logoff.cgi/'
'CHES_TOKEN_URL': 'https://test.loginproxy.gov.bc.ca/auth/realms/comsvcauth/protocol/openid-connect/token'
'CHES_URL': 'https://ches-test.api.gov.bc.ca'
'RENTAL_LISTING_REPORT_MAX_SIZE': '10'
'RENTAL_LISTING_REPORT_MAX_SIZE': '30'
'BCEID_URL': 'https://gws1.test.bceid.ca/webservices/client/v10/bceidservice.asmx'
'BCEID_CACHE_LIFESPAN': '600'
'GEOCODER_URL': 'https://geocodertst.api.gov.bc.ca'
Expand Down
2 changes: 1 addition & 1 deletion server/StrDss.Common/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ public static class RentalListingExport

public static string GetHeadersAsCsv()
{
return string.Join(", ", Headers);
return string.Join(",", Headers);
}
}

Expand Down

0 comments on commit d3dc7a9

Please sign in to comment.