We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 414d79b commit 2b89970Copy full SHA for 2b89970
.github/workflows/proxy.yml
@@ -8,6 +8,7 @@ on:
8
paths:
9
- ".github/workflows/proxy.yml"
10
- "proxy/**"
11
+ - "operator/**"
12
13
jobs:
14
build-images:
proxy/src/proxy.rs
@@ -22,7 +22,7 @@ pub struct SubmitApiProxy {
22
}
23
impl SubmitApiProxy {
24
pub fn new(state: Arc<State>, config: Arc<Config>) -> Self {
25
- let host_regex = Regex::new(r"(dmtr_[\w\d-]+)?\.?.+").unwrap();
+ let host_regex = Regex::new(r"([dmtr_]?[\w\d-]+)?\.?.+").unwrap();
26
27
Self {
28
state,
0 commit comments