Skip to content

Commit

Permalink
[drop-me] Change https to http
Browse files Browse the repository at this point in the history
  • Loading branch information
mkondratek committed Nov 27, 2024
1 parent f40f036 commit 42947df
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ data class TestingCredentials(
token = System.getenv("SRC_ENTERPRISE_ACCESS_TOKEN"),
redactedToken =
"REDACTED_b20717265e7ab1d132874d8ff0be053ab9c1dacccec8dce0bbba76888b6a0a69",
serverEndpoint = "https://demo.sourcegraph.com/")
serverEndpoint = "http://demo.sourcegraph.com/")
val s2 =
TestingCredentials(
token = System.getenv("SRC_S2_ACCESS_TOKEN"),
redactedToken =
"REDACTED_964f5256e709a8c5c151a63d8696d5c7ac81604d179405864d88ff48a9232364",
serverEndpoint = "https://sourcegraph.sourcegraph.com/")
serverEndpoint = "http://sourcegraph.sourcegraph.com/")
}
}
2 changes: 1 addition & 1 deletion src/main/kotlin/com/sourcegraph/config/ConfigUtil.kt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import org.jetbrains.annotations.Contract
import org.jetbrains.annotations.VisibleForTesting

object ConfigUtil {
const val DOTCOM_URL = "https://sourcegraph.com/"
const val DOTCOM_URL = "http://sourcegraph.com/"
const val CODY_DISPLAY_NAME = "Cody"
const val CODE_SEARCH_DISPLAY_NAME = "Code Search"
const val SOURCEGRAPH_DISPLAY_NAME = "Sourcegraph"
Expand Down

0 comments on commit 42947df

Please sign in to comment.