-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix issue related to path for TLS certificate/key Signed-off-by: Arrobo, Gabriel <[email protected]> * Minor logging fixes Signed-off-by: Arrobo, Gabriel <[email protected]> * Create patch release Signed-off-by: Arrobo, Gabriel <[email protected]> --------- Signed-off-by: Arrobo, Gabriel <[email protected]>
- Loading branch information
1 parent
1fff2cf
commit 87a8986
Showing
3 changed files
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.5.2-dev | ||
1.5.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
// SPDX-FileCopyrightText: 2021 Open Networking Foundation <[email protected]> | ||
// Copyright 2019 free5GC.org | ||
// SPDX-FileCopyrightText: 2024 Canonical Ltd. | ||
// SPDX-FileCopyrightText: 2024 Intel Corporation | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// | ||
|
||
|
@@ -287,7 +288,7 @@ func (pcf *PCF) Start() { | |
if serverScheme == "http" { | ||
err = server.ListenAndServe() | ||
} else if serverScheme == "https" { | ||
err = server.ListenAndServeTLS(util.PCF_PEM_PATH, util.PCF_KEY_PATH) | ||
err = server.ListenAndServeTLS(self.PEM, self.Key) | ||
} | ||
|
||
if err != nil { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters