summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2016-03-21 16:34:39 -0700
committerMark Wells <mark@freeside.biz>2016-03-21 16:35:07 -0700
commite4c9c3ef46e45439bea0220fc9901c5318761e37 (patch)
treeac61bbc216befd336fc5657eaae562947068c569
parentfcfe04d67690621ef777378f5ed58cd3729bae53 (diff)
fix host parameter in non-test mode, #39914
-rw-r--r--FS/FS/part_export/bandwidth_com.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/FS/FS/part_export/bandwidth_com.pm b/FS/FS/part_export/bandwidth_com.pm
index 7bb26e08d..6c69fe356 100644
--- a/FS/FS/part_export/bandwidth_com.pm
+++ b/FS/FS/part_export/bandwidth_com.pm
@@ -427,6 +427,7 @@ sub host {
$self->{_host} ||= do {
my $host = 'dashboard.bandwidth.com';
$host = "test.$host" if $self->option('test');
+ $host;
};
}