diff --git a/helm/main/values-dev.yaml b/helm/main/values-dev.yaml index 91fabd42..c78c4843 100644 --- a/helm/main/values-dev.yaml +++ b/helm/main/values-dev.yaml @@ -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' diff --git a/helm/main/values-prod.yaml b/helm/main/values-prod.yaml index 660e2c48..5ecc5701 100644 --- a/helm/main/values-prod.yaml +++ b/helm/main/values-prod.yaml @@ -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' diff --git a/helm/main/values-test.yaml b/helm/main/values-test.yaml index 2745a130..ef623e23 100644 --- a/helm/main/values-test.yaml +++ b/helm/main/values-test.yaml @@ -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' diff --git a/helm/main/values-uat.yaml b/helm/main/values-uat.yaml index 1c757309..6e34fe64 100644 --- a/helm/main/values-uat.yaml +++ b/helm/main/values-uat.yaml @@ -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' diff --git a/server/StrDss.Common/Constants.cs b/server/StrDss.Common/Constants.cs index cbe02010..4ed425c4 100644 --- a/server/StrDss.Common/Constants.cs +++ b/server/StrDss.Common/Constants.cs @@ -172,7 +172,7 @@ public static class RentalListingExport public static string GetHeadersAsCsv() { - return string.Join(", ", Headers); + return string.Join(",", Headers); } }