diff options
author | Mark Wells <mark@freeside.biz> | 2016-03-21 16:34:39 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2016-03-21 16:35:17 -0700 |
commit | efeb24eb94eb8b32566ff9bbe5f69518d1e90631 (patch) | |
tree | c3384e77f7f6b43ede1f51f3b7a97acd67c9ef9f /FS/FS | |
parent | 032710ef2b662f6342abfde5b89d4056ab362e82 (diff) |
fix host parameter in non-test mode, #39914
Diffstat (limited to 'FS/FS')
-rw-r--r-- | FS/FS/part_export/bandwidth_com.pm | 1 |
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; }; } |