File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
src/main/java/eu/openanalytics/containerproxy/backend Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,6 @@ public abstract class AbstractContainerBackend implements IContainerBackend {
71
71
protected static final String ENV_VAR_REALM_ID = "SHINYPROXY_REALM_ID" ;
72
72
73
73
protected static final String LABEL_PROXY_ID = "openanalytics.eu/sp-proxy-id" ;
74
- protected static final String LABEL_USER_ID = "openanalytics.eu/sp-user-id" ;
75
74
protected static final String LABEL_PROXY_SPEC_ID = "openanalytics.eu/sp-spec-id" ;
76
75
protected static final String LABEL_STARTUP_TIMESTAMP = "openanalytics.eu/sp-proxy-startup-timestamp" ;
77
76
@@ -134,7 +133,6 @@ protected void doStartProxy(Proxy proxy) throws Exception {
134
133
135
134
// add labels need for App Recovery and maintenance
136
135
spec .addLabel (LABEL_PROXY_ID , proxy .getId ());
137
- spec .addLabel (LABEL_USER_ID , proxy .getUserId ());
138
136
spec .addLabel (LABEL_PROXY_SPEC_ID , proxy .getSpec ().getId ());
139
137
spec .addLabel (LABEL_STARTUP_TIMESTAMP , String .valueOf (proxy .getStartupTimestamp ()));
140
138
@@ -144,7 +142,6 @@ protected void doStartProxy(Proxy proxy) throws Exception {
144
142
145
143
// remove labels needed for App Recovery since they do not really belong to the spec
146
144
spec .removeLabel (LABEL_PROXY_ID );
147
- spec .removeLabel (LABEL_USER_ID );
148
145
spec .removeLabel (LABEL_PROXY_SPEC_ID );
149
146
spec .removeLabel (LABEL_STARTUP_TIMESTAMP );
150
147
You can’t perform that action at this time.
0 commit comments