You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If both modules CoudEnvirnment and Kitura-Credentials (Credentials) is imported, the type Credentials is ambiguous for the compiler. It looks like it's a compiler limitation https://bugs.swift.org/browse/SR-6705 so It may be a good idea to address the issue on the source level. Since CloudEnvironment is often used with the Kitura framework, it may be a good idea to clarify the Credentials type.
Application.swift:18:22: error: 'Credentials' is ambiguous for type lookup in this context
var credentials: Credentials.Credentials
^~~~~~~~~~~
CloudEnvironment.Credentials:4:14: note: found this candidate
public class Credentials {
^
Credentials.Credentials:2:14: note: found this candidate
public class Credentials : RouterMiddleware {
^
The text was updated successfully, but these errors were encountered:
If both modules
CoudEnvirnment
andKitura-Credentials
(Credentials) is imported, the typeCredentials
is ambiguous for the compiler. It looks like it's a compiler limitation https://bugs.swift.org/browse/SR-6705 so It may be a good idea to address the issue on the source level. SinceCloudEnvironment
is often used with the Kitura framework, it may be a good idea to clarify theCredentials
type.Kitura-Credentials report: Kitura/Kitura-Credentials#36
The text was updated successfully, but these errors were encountered: