Skip to content

Commit

Permalink
CHE-721: Fix docker authentication error log on create workspace
Browse files Browse the repository at this point in the history
Signed-off-by: Aleksandr Andrienko <aandrienko@codenvy.com>
  • Loading branch information
AndrienkoAleksandr committed Apr 13, 2016
1 parent f3ffa6e commit 0fabe65
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ schedule.core_pool_size=10
### for the machines can come from DockerHub or a private Docker registry.
machine.docker.registry=${CHE_REGISTRY_HOST}:5000
docker.registry.auth.url=http://${CHE_REGISTRY_HOST}:5000
docker.registry.auth.username=user1
docker.registry.auth.password=pass
docker.registry.auth.email=user1@email.com
docker.registry.auth.username=NULL
docker.registry.auth.password=NULL
docker.registry.auth.email=NULL
docker.connection.tcp.connection_timeout_ms=600000
docker.connection.tcp.read_timeout_ms=600000

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,14 +88,6 @@ public String getAuthConfigHeader() {
}
}

public AuthConfig getInitialAuthConfig() {
if (predefinedConfig != null) {
return predefinedConfig;
} else {
return null;
}
}

public AuthConfigs getAuthConfigs() {
AuthConfigs authConfigs = DtoFactory.newDto(AuthConfigs.class);
if (predefinedConfig != null) {
Expand Down

0 comments on commit 0fabe65

Please sign in to comment.